mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +01:00
11 lines
233 B
C#
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);
|
|||
|
}
|
|||
|
}
|