Files
notesnook-sync-server-2026/Streetwriters.Common/Enums/SubscriptionType.cs
T
2022-12-28 16:20:25 +05:00

12 lines
220 B
C#

namespace Streetwriters.Common.Enums
{
public enum SubscriptionType
{
BASIC = 0,
TRIAL = 1,
BETA = 2,
PREMIUM = 5,
PREMIUM_EXPIRED = 6,
PREMIUM_CANCELED = 7
}
}