1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-04 14:13:28 +01:00
bitwarden-server/src/Core/Services/ILicenseVerificationService.cs

11 lines
233 B
C#
Raw Normal View History

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