Seenginx/Seenginx/Services/INginxService.cs
2020-04-12 20:01:46 +02:00

12 lines
288 B
C#

using Seenginx.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Seenginx.Services
{
public interface INginxService
{
Task<IEnumerable<ConfigFile>> GetFiles(NginxFilter filter = null);
Task<Result<bool>> TestNginxConfigurations();
}
}