1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-09 15:18:13 -05:00
bitwarden/src/Core/Services/ILicenseVerificationService.cs
2017-08-11 17:06:31 -04:00

13 lines
311 B
C#

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