mirror of
https://github.com/bitwarden/server.git
synced 2026-02-09 02:13:11 +08:00
18 lines
547 B
C#
18 lines
547 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Models.Business;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ILicensingService
|
|
{
|
|
Task ValidateOrganizationsAsync();
|
|
Task ValidateUsersAsync();
|
|
Task<bool> ValidateUserPremiumAsync(User user);
|
|
bool VerifyLicense(ILicense license);
|
|
byte[] SignLicense(ILicense license);
|
|
Task<OrganizationLicense> ReadOrganizationLicenseAsync(Organization organization);
|
|
Task<OrganizationLicense> ReadOrganizationLicenseAsync(Guid organizationId);
|
|
|
|
}
|
|
}
|