mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 05:55:13 -05:00
16 lines
455 B
C#
16 lines
455 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; }
|
|
}
|