mirror of
https://github.com/bitwarden/server.git
synced 2025-05-25 13:24:50 -05:00

* Revert "Add SmMaxProjects to OrganizationLicense (#5678)" This reverts commit 7fe022e26fce3c3f032757e832df50e9478e6658. * 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; }
|
|
}
|