2017-03-08 21:45:08 -05:00
|
|
|
|
using Bit.Core.Models.Table;
|
2017-03-03 00:07:11 -05:00
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Business
|
|
|
|
|
|
{
|
|
|
|
|
|
public class OrganizationSignup
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
2017-04-04 12:57:50 -04:00
|
|
|
|
public string BusinessName { get; set; }
|
|
|
|
|
|
public string BillingEmail { get; set; }
|
2017-03-03 00:07:11 -05:00
|
|
|
|
public User Owner { get; set; }
|
|
|
|
|
|
public string OwnerKey { get; set; }
|
|
|
|
|
|
public Enums.PlanType Plan { get; set; }
|
2017-04-10 10:44:27 -04:00
|
|
|
|
public short AdditionalSeats { get; set; }
|
2017-07-11 10:25:00 -04:00
|
|
|
|
public short AdditionalStorageGb { get; set; }
|
2018-11-20 22:02:09 -05:00
|
|
|
|
public bool PremiumAccessAddon { get; set; }
|
2017-04-04 10:13:16 -04:00
|
|
|
|
public string PaymentToken { get; set; }
|
2017-08-30 21:25:46 -04:00
|
|
|
|
public string CollectionName { get; set; }
|
2017-03-03 00:07:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|