Merge branch 'newmain'

This commit is contained in:
masoodafar-web
2025-11-24 23:22:18 +03:30
parent 744f71ce6c
commit 25eee4ede3
30 changed files with 69 additions and 370 deletions

View File

@@ -1,31 +1,12 @@
using CMSMicroservice.Domain.Enums;
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 long? OrderId { get; set; }
//Order Navigation Property
public virtual UserOrder? Order { get; set; }
public TransactionType Type { get; set; }
}