1
0
mirror of https://github.com/bitwarden/server synced 2026-01-06 10:34:01 +00:00
Files
server/src/Core/Billing/Pricing/Organizations/Plan.cs
Alex Morask 6a3fc08957 [PM-26793] Fetch premium plan from pricing service (#6450)
* Fetch premium plan from pricing service

* Run dotnet format
2025-10-22 14:13:16 -05:00

26 lines
948 B
C#

namespace Bit.Core.Billing.Pricing.Organizations;
public class Plan
{
public required string LookupKey { get; set; }
public required string Name { get; set; }
public required string Tier { get; set; }
public string? Cadence { get; set; }
public int? LegacyYear { get; set; }
public bool Available { get; set; }
public required Feature[] Features { get; set; }
public required Purchasable Seats { get; set; }
public Scalable? ManagedSeats { get; set; }
public Scalable? Storage { get; set; }
public SecretsManagerPurchasables? SecretsManager { get; set; }
public int? TrialPeriodDays { get; set; }
public required string[] CanUpgradeTo { get; set; }
public required Dictionary<string, string> AdditionalData { get; set; }
}
public class SecretsManagerPurchasables
{
public required FreeOrScalable Seats { get; set; }
public required FreeOrScalable ServiceAccounts { get; set; }
}