server-master/srcs/_plugins/Plugin.DB.EF/Auth/ClientVersion/IAuthorizedClientVersionRepository.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
341 B
C#

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