All checks were successful
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 7m8s
9 lines
119 B
C#
9 lines
119 B
C#
namespace CMSMicroservice.Domain.Enums;
|
|
//
|
|
public enum PaymentMethod
|
|
{
|
|
IPG = 0,
|
|
Wallet = 1,
|
|
Deposit = 2,
|
|
}
|