1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00:00

org signup plan details

This commit is contained in:
Kyle Spearrin
2017-04-04 12:57:50 -04:00
parent a4ef7c906e
commit f52c0798cd
15 changed files with 218 additions and 84 deletions

View File

@@ -6,9 +6,13 @@ namespace Bit.Core.Models.Business
public class OrganizationSignup
{
public string Name { get; set; }
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 AdditionalUsers { get; set; }
public string PaymentToken { get; set; }
public bool Monthly { get; set; }
}
}