2026-05-27 21:33:48 +03:30
|
|
|
namespace Meezi.Core.Enums;
|
|
|
|
|
|
|
|
|
|
public enum SubscriptionPaymentStatus
|
|
|
|
|
{
|
|
|
|
|
Pending = 0,
|
|
|
|
|
Completed = 1,
|
2026-06-02 16:44:32 +03:30
|
|
|
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
|
|
|
}
|