13 lines
413 B
C#
13 lines
413 B
C#
|
|
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; }
|
||
|
|
}
|