Generator Changes at 11/12/2025 8:32:46 PM +03:30

This commit is contained in:
masoodafar-web
2025-11-12 20:39:24 +03:30
parent 1fb7e4d374
commit 288ae19a06

View File

@@ -1,5 +1,3 @@
using CMSMicroservice.Domain.Enums;
namespace CMSMicroservice.Domain.Entities;
//آدرس کاربر
public class Transactions : BaseAuditableEntity
@@ -24,7 +22,7 @@ public class Transactions : BaseAuditableEntity
public string? CardHash { get; set; }
public string? CardPan { get; set; }
public string? RefId { get; set; }
public string? OrderId { get; set; }
public long? OrderId { get; set; }
//Order Navigation Property
public virtual UserOrder? Order { get; set; }
public TransactionType Type { get; set; }