Files
CMS/src/CMSMicroservice.Domain/Enums/PaymentMethod.cs
masoodafar-web 094846ce8b
All checks were successful
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 7m8s
feat: add manual membership payment processing with wallet and order management
2025-12-12 10:07:14 +03:30

9 lines
119 B
C#

namespace CMSMicroservice.Domain.Enums;
//
public enum PaymentMethod
{
IPG = 0,
Wallet = 1,
Deposit = 2,
}