1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-28 00:02:26 -05:00
bitwarden/src/Core/Services/ILicensingService.cs
2017-08-11 22:55:25 -04:00

14 lines
347 B
C#

using Bit.Core.Models.Business;
using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
public interface ILicensingService
{
bool VerifyOrganizationPlan(Organization organization);
bool VerifyUserPremium(User user);
bool VerifyLicense(ILicense license);
byte[] SignLicense(ILicense license);
}
}