Generator Changes at 11/12/2025 1:32:03 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-12 02:24:02 +03:30
parent 826ae4589f
commit b27c765731
290 changed files with 30811 additions and 21316 deletions
@@ -0,0 +1,29 @@
namespace CMSMicroservice.Domain.Entities;
//آدرس کاربر
public class Transactions : BaseAuditableEntity
{
public string MerchantId { get; set; }
public long Amount { get; set; }
public string CallbackUrl { get; set; }
public string Description { get; set; }
public string? Mobile { get; set; }
public string? Email { get; set; }
public int? RequestStatusCode { get; set; }
public string? RequestStatusMessage { get; set; }
public string? Authority { get; set; }
public string? FeeType { get; set; }
public long? Fee { get; set; }
public int? Currency { get; set; }
public PaymentStatus PaymentStatus { get; set; }
//تاریخ پرداخت
public DateTime? PaymentDate { get; set; }
public int? VerificationStatusCode { get; set; }
public string? VerificationStatusMessage { get; set; }
public string? CardHash { get; set; }
public string? CardPan { get; set; }
public string? RefId { get; set; }
public string? OrderId { get; set; }
//Order Navigation Property
public virtual UserOrder? Order { get; set; }
public TransactionType Type { get; set; }
}