mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
* Added appliesTo to customer discount. Added productId to subscription item * Added IsFromSecretsManagerTrial flag to add discount for SM trials * Fixed broken tests --------- Co-authored-by: Alex Morask <amorask@bitwarden.com>
20 lines
663 B
C#
20 lines
663 B
C#
using Bit.Core.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; }
|
|
public bool IsFromSecretsManagerTrial { get; set; }
|
|
}
|