namespace Meezi.Core.Enums;
public enum SubscriptionPaymentStatus
{
Pending = 0,
Completed = 1,
Failed = 2,
/// Paid, but queued to start after the current coverage ends.
Scheduled = 3,
/// A queued (Scheduled) subscription the owner cancelled before it started.
Cancelled = 4
}