mirror of
https://github.com/bitwarden/server
synced 2025-12-17 00:33:23 +00:00
organization signup apis and data model changes
This commit is contained in:
15
src/Core/Models/StaticStore/Plan.cs
Normal file
15
src/Core/Models/StaticStore/Plan.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Bit.Core.Enums;
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.StaticStore
|
||||
{
|
||||
public class Plan
|
||||
{
|
||||
public PlanType Type { get; set; }
|
||||
public short MaxUsers { get; set; }
|
||||
public decimal Price { get; set; }
|
||||
public TimeSpan? Trial { get; set; }
|
||||
public Func<TimeSpan> Cycle { get; set; }
|
||||
public bool Disabled { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user