Files
server/src/Core/Models/StaticStore/Plan.cs

18 lines
480 B
C#
Raw Normal View History

using Bit.Core.Enums;
using System;
namespace Bit.Core.Models.StaticStore
{
public class Plan
{
2017-04-04 10:13:16 -04:00
public string Name { get; set; }
public string StripeId { get; set; }
public PlanType Type { get; set; }
public short MaxUsers { get; set; }
public decimal Price { get; set; }
public TimeSpan? Trial { get; set; }
2017-03-08 22:33:31 -05:00
public Func<DateTime, TimeSpan> Cycle { get; set; }
public bool Disabled { get; set; }
}
}