Api/NetinaShop.Domain/Enums/OrderPaymentMethod.cs

11 lines
280 B
C#
Raw Normal View History

namespace NetinaShop.Domain.Enums;
public enum OrderPaymentMethod
{
[Display(Name = "پرداخت درب محل")]
Cash,
[Display(Name = "پرداخت انلاین")]
OnlinePayment,
[Display(Name = "پرداخت کارت به کارت")]
CardTransfer
}