Add CreatedAt field to wallet change log responses

This commit is contained in:
masoodafar-web
2025-11-28 14:07:10 +03:30
parent a3c7033d95
commit 99ef7983f8
4 changed files with 14 additions and 2 deletions
@@ -24,4 +24,6 @@ public class GetAllUserWalletChangeLogByFilterResponseDto
public bool IsIncrease { get; set; }
//شناسه ارجاع
public long? RefrenceId { get; set; }
//تاریخ ایجاد
public DateTime CreatedAt { get; set; }
}
@@ -17,5 +17,7 @@ public class GetUserWalletChangeLogResponseDto
public bool IsIncrease { get; set; }
//شناسه ارجاع
public long? RefrenceId { get; set; }
//تاریخ ایجاد
public DateTime CreatedAt { get; set; }
}