mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 13:35:10 -05:00
21 lines
704 B
C#
21 lines
704 B
C#
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Models.Business
|
|
{
|
|
public class OrganizationSignup
|
|
{
|
|
public string Name { get; set; }
|
|
public string BusinessName { get; set; }
|
|
public string BusinessCountry { get; set; }
|
|
public string BillingEmail { get; set; }
|
|
public User Owner { get; set; }
|
|
public string OwnerKey { get; set; }
|
|
public Enums.PlanType Plan { get; set; }
|
|
public short AdditionalSeats { get; set; }
|
|
public short AdditionalStorageGb { get; set; }
|
|
public bool PremiumAccessAddon { get; set; }
|
|
public string PaymentToken { get; set; }
|
|
public string CollectionName { get; set; }
|
|
}
|
|
}
|