1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-24 10:14:55 +02:00
bitwarden-mobile/src/Core/Enums/PlanType.cs
2019-04-09 23:24:03 -04:00

14 lines
259 B
C#

namespace Bit.Core.Enums
{
public enum PlanType : byte
{
Free = 0,
FamiliesAnnually = 1,
TeamsMonthly = 2,
TeamsAnnually = 3,
EnterpriseMonthly = 4,
EnterpriseAnnually = 5,
Custom = 6
}
}