Files
2026-02-21 16:45:37 +08:00

32 lines
464 B
C#

using System.Collections.Generic;
namespace Viveport
{
public class SubscriptionStatus
{
public enum Platform
{
Windows = 0,
Android = 1
}
public enum TransactionType
{
Unknown = 0,
Paid = 1,
Redeem = 2,
FreeTrial = 3
}
public List<Platform> Platforms { get; set; }
public TransactionType Type { get; set; }
public SubscriptionStatus()
{
Platforms = new List<Platform>();
Type = TransactionType.Unknown;
}
}
}