16 lines
517 B
C#
16 lines
517 B
C#
namespace Marco.Pms.Model.ViewModels.PaymentGetway
|
|
{
|
|
public class RazorpayOrderDetails
|
|
{
|
|
public string? OrderId { get; set; }
|
|
public decimal Amount { get; set; }
|
|
public string? Currency { get; set; }
|
|
public string? Status { get; set; }
|
|
public string? Receipt { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public decimal AmountPaid { get; set; }
|
|
public decimal AmountDue { get; set; }
|
|
public int Attempts { get; set; }
|
|
}
|
|
}
|