Files
CMS/src/CMSMicroservice.Domain/Entities/Transactions.cs

15 lines
528 B
C#
Raw Normal View History

namespace CMSMicroservice.Domain.Entities;
//آدرس کاربر
public class Transactions : BaseAuditableEntity
{
public long Amount { get; set; }
public string Description { get; set; }
public PaymentStatus PaymentStatus { get; set; }
//تاریخ پرداخت
public DateTime? PaymentDate { get; set; }
public string? RefId { get; set; }
public TransactionType Type { get; set; }
//UserOrder Collection Navigation Reference
public virtual ICollection<UserOrder> UserOrders { get; set; }
}