mirror of
https://github.com/bitwarden/server.git
synced 2025-04-07 05:58:13 -05:00
15 lines
358 B
C#
15 lines
358 B
C#
using Bit.Core.Models.Table;
|
|
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 string PaymentToken { get; set; }
|
|
}
|
|
}
|