mirror of
https://github.com/bitwarden/server.git
synced 2025-05-12 15:12:16 -05:00
12 lines
290 B
C#
12 lines
290 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; }
|
|
public int? SmMaxProjects { get; set; }
|
|
}
|