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