2025-11-25 00:39:31 +03:30
|
|
|
using CMSMicroservice.Domain.Enums;
|
|
|
|
|
|
2025-11-12 02:24:02 +03:30
|
|
|
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; }
|
|
|
|
|
}
|