Files
server/src/Core/Models/Business/OrganizationSignup.cs

18 lines
565 B
C#
Raw Normal View History

using Bit.Core.Enums;
using Bit.Core.Models.Table;
namespace Bit.Core.Models.Business
{
2019-03-21 21:36:03 -04:00
public class OrganizationSignup : OrganizationUpgrade
{
public string Name { get; set; }
2017-04-04 12:57:50 -04:00
public string BillingEmail { get; set; }
public User Owner { get; set; }
public string OwnerKey { get; set; }
2019-03-21 21:36:03 -04:00
public string CollectionName { get; set; }
public PaymentMethodType? PaymentMethodType { get; set; }
2017-04-04 10:13:16 -04:00
public string PaymentToken { get; set; }
public int? MaxAutoscaleSeats { get; set; } = null;
}
}