2019-02-19 17:13:21 -05:00
|
|
|
|
using Bit.Core.Enums;
|
|
|
|
|
|
using Bit.Core.Models.Table;
|
2017-03-03 00:07:11 -05:00
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Business
|
|
|
|
|
|
{
|
2019-03-21 21:36:03 -04:00
|
|
|
|
public class OrganizationSignup : OrganizationUpgrade
|
2017-03-03 00:07:11 -05:00
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
2017-04-04 12:57:50 -04:00
|
|
|
|
public string BillingEmail { get; set; }
|
2017-03-03 00:07:11 -05:00
|
|
|
|
public User Owner { get; set; }
|
|
|
|
|
|
public string OwnerKey { get; set; }
|
2019-03-21 21:36:03 -04:00
|
|
|
|
public string CollectionName { get; set; }
|
2019-02-19 17:13:21 -05:00
|
|
|
|
public PaymentMethodType? PaymentMethodType { get; set; }
|
2017-04-04 10:13:16 -04:00
|
|
|
|
public string PaymentToken { get; set; }
|
2021-09-23 06:36:08 -04:00
|
|
|
|
public int? MaxAutoscaleSeats { get; set; } = null;
|
2017-03-03 00:07:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|