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

20 lines
652 B
C#
Raw Normal View History

2017-03-08 21:45:08 -05:00
using Bit.Core.Models.Table;
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; }
public User Owner { get; set; }
public string OwnerKey { get; set; }
public Enums.PlanType Plan { get; set; }
public short AdditionalSeats { get; set; }
2017-07-11 10:25:00 -04:00
public short AdditionalStorageGb { get; set; }
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; }
}
}