Files
meezi/src/Meezi.Core/Enums/SubscriptionPaymentStatus.cs
T

13 lines
346 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
namespace Meezi.Core.Enums;
public enum SubscriptionPaymentStatus
{
Pending = 0,
Completed = 1,
Failed = 2,
/// <summary>Paid, but queued to start after the current coverage ends.</summary>
Scheduled = 3,
/// <summary>A queued (Scheduled) subscription the owner cancelled before it started.</summary>
Cancelled = 4
2026-05-27 21:33:48 +03:30
}