DocSpace-buildtools/common/ASC.Core.Common/Billing/PaymentInfo.cs

21 lines
641 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Core.Billing;
[Serializable]
public class PaymentInfo
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
public int ID { get; set; }
public int Status { get; set; }
public int PaymentSystemId { get; set; }
public string CartId { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string Email { get; set; }
public DateTime PaymentDate { get; set; }
public Decimal Price { get; set; }
public string PaymentCurrency { get; set; }
public string PaymentMethod { get; set; }
public int QuotaId { get; set; }
public string ProductRef { get; set; }
public string CustomerId { get; set; }
2019-05-15 14:56:09 +00:00
}