mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00:00
11 lines
307 B
C#
11 lines
307 B
C#
namespace Bit.Core.Billing.Pricing.Premium;
|
|
|
|
public class Plan
|
|
{
|
|
public string Name { get; init; } = null!;
|
|
public int? LegacyYear { get; init; }
|
|
public bool Available { get; init; }
|
|
public Purchasable Seat { get; init; } = null!;
|
|
public Purchasable Storage { get; init; } = null!;
|
|
}
|