mirror of
https://github.com/bitwarden/server
synced 2025-12-10 21:33:41 +00: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; }
|
|
}
|
|
}
|