9 lines
122 B
C#
9 lines
122 B
C#
|
|
namespace Meezi.Core.Enums;
|
||
|
|
|
||
|
|
public enum SubscriptionPaymentStatus
|
||
|
|
{
|
||
|
|
Pending = 0,
|
||
|
|
Completed = 1,
|
||
|
|
Failed = 2
|
||
|
|
}
|