1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-03 14:03:33 +01:00
bitwarden-server/src/Core/Services/ILicensingService.cs

16 lines
404 B
C#
Raw Normal View History

2017-08-11 23:06:31 +02:00
using Bit.Core.Models.Business;
using Bit.Core.Models.Table;
using System.Threading.Tasks;
namespace Bit.Core.Services
{
2017-08-12 04:55:25 +02:00
public interface ILicensingService
{
2017-08-17 06:12:11 +02:00
Task ValidateOrganizationsAsync();
2017-08-22 21:27:29 +02:00
Task ValidateUsersAsync();
2017-08-17 06:12:11 +02:00
Task<bool> ValidateUserPremiumAsync(User user);
2017-08-11 23:06:31 +02:00
bool VerifyLicense(ILicense license);
2017-08-12 04:55:25 +02:00
byte[] SignLicense(ILicense license);
}
}