mirror of
https://github.com/bitwarden/server.git
synced 2025-06-16 15:53:13 -05:00
19 lines
615 B
C#
19 lines
615 B
C#
using Bit.Core.Billing.Enums;
|
|
|
|
namespace Bit.Core.Models.Business;
|
|
|
|
public class OrganizationUpgrade
|
|
{
|
|
public string BusinessName { get; set; }
|
|
public PlanType Plan { get; set; }
|
|
public int AdditionalSeats { get; set; }
|
|
public short AdditionalStorageGb { get; set; }
|
|
public bool PremiumAccessAddon { get; set; }
|
|
public TaxInfo TaxInfo { get; set; }
|
|
public string PublicKey { get; set; }
|
|
public string PrivateKey { get; set; }
|
|
public int? AdditionalSmSeats { get; set; }
|
|
public int? AdditionalServiceAccounts { get; set; }
|
|
public bool UseSecretsManager { get; set; }
|
|
}
|