1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 20:53:16 +00:00
Files
server/src/Core/Models/Business/OrganizationSignup.cs

18 lines
561 B
C#

using Bit.Core.Entities;
using Bit.Core.Enums;
namespace Bit.Core.Models.Business
{
public class OrganizationSignup : OrganizationUpgrade
{
public string Name { get; set; }
public string BillingEmail { get; set; }
public User Owner { get; set; }
public string OwnerKey { get; set; }
public string CollectionName { get; set; }
public PaymentMethodType? PaymentMethodType { get; set; }
public string PaymentToken { get; set; }
public int? MaxAutoscaleSeats { get; set; } = null;
}
}