1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 07:43:54 +00:00
Files
server/src/Core/Services/ILicenseVerificationService.cs
2017-08-09 17:01:37 -04:00

11 lines
233 B
C#

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