mirror of
https://github.com/bitwarden/server
synced 2025-12-16 08:13:33 +00:00
organization signup apis and data model changes
This commit is contained in:
20
src/Core/Models/Business/OrganizationSignup.cs
Normal file
20
src/Core/Models/Business/OrganizationSignup.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Bit.Core.Domains;
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.Business
|
||||
{
|
||||
public class OrganizationSignup
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public User Owner { get; set; }
|
||||
public string OwnerKey { get; set; }
|
||||
public Enums.PlanType Plan { get; set; }
|
||||
public PaymentDetails Payment { get; set; }
|
||||
|
||||
public class PaymentDetails
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Token { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user