littleshop/LittleShop/Enums/PaymentStatus.cs
2025-09-01 04:49:05 +01:00

14 lines
220 B
C#

namespace LittleShop.Enums;
public enum PaymentStatus
{
Pending = 0,
PartiallyPaid = 1,
Paid = 2,
Overpaid = 3,
Expired = 4,
Cancelled = 5,
Processing = 6,
Completed = 7,
Failed = 8
}