mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 01:22:50 -05:00

* Revert "Add SmMaxProjects to OrganizationLicense (#5678)"
This reverts commit 7fe022e26f
.
* Use PricingClient in MaxProjectsQuery and limit to cloud-only (free 2-person)
11 lines
246 B
C#
11 lines
246 B
C#
#nullable enable
|
|
using Bit.Core.Models.Business;
|
|
|
|
namespace Bit.Core.Billing.Licenses.Models;
|
|
|
|
public class LicenseContext
|
|
{
|
|
public Guid? InstallationId { get; init; }
|
|
public required SubscriptionInfo SubscriptionInfo { get; init; }
|
|
}
|