1
0
mirror of https://github.com/bitwarden/server synced 2025-12-10 21:33:41 +00:00
Files
server/src/Core/Models/StaticStore/Plan.cs
2017-03-03 00:07:11 -05:00

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; }
}
}