From 288ae19a06fc2dabd8c870bf1e44ef94b933be4f Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Wed, 12 Nov 2025 20:39:24 +0330 Subject: [PATCH] =?UTF-8?q?Generator=20Changes=20at=2011/12/2025=208:32:46?= =?UTF-8?q?=E2=80=AFPM=20+03:30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/CMSMicroservice.Domain/Entities/Transactions.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/CMSMicroservice.Domain/Entities/Transactions.cs b/src/CMSMicroservice.Domain/Entities/Transactions.cs index 3dc15e2..905cbc3 100644 --- a/src/CMSMicroservice.Domain/Entities/Transactions.cs +++ b/src/CMSMicroservice.Domain/Entities/Transactions.cs @@ -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; }