mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 16:43:14 +08:00
16 lines
384 B
C#
16 lines
384 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|