mirror of
https://github.com/bitwarden/server.git
synced 2025-04-27 15:52:13 -05:00
15 lines
388 B
C#
15 lines
388 B
C#
using Bit.Core.Models.Business;
|
|
using Bit.Core.Models.Table;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ILicensingService
|
|
{
|
|
bool VerifyOrganizationPlan(Organization organization);
|
|
Task<bool> VerifyUserPremiumAsync(User user);
|
|
bool VerifyLicense(ILicense license);
|
|
byte[] SignLicense(ILicense license);
|
|
}
|
|
}
|