using System.Threading.Tasks; using PhoenixLib.DAL; using WingsAPI.Communication.Auth; namespace Plugin.Database.Auth.ClientVersion { public interface IAuthorizedClientVersionRepository : IGenericAsyncLongRepository { Task DeleteAsync(string clientVersion); } }