mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
17 lines
505 B
C#
17 lines
505 B
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Table;
|
|
|
|
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; }
|
|
}
|
|
}
|