mirror of
https://github.com/bitwarden/server.git
synced 2025-04-28 00:02:26 -05:00
14 lines
347 B
C#
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);
|
|
}
|
|
}
|