Generator Changes at 11/12/2025 1:32:03 AM +03:30
This commit is contained in:
17
src/CMSMicroservice.Domain/Entities/UserWalletChangeLog.cs
Normal file
17
src/CMSMicroservice.Domain/Entities/UserWalletChangeLog.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace CMSMicroservice.Domain.Entities;
|
||||
//آدرس کاربر
|
||||
public class UserWalletChangeLog : BaseAuditableEntity
|
||||
{
|
||||
//شناسه کیف پول
|
||||
public long WalletId { get; set; }
|
||||
//Wallet Navigation Property
|
||||
public virtual UserWallet Wallet { get; set; }
|
||||
//موجودی
|
||||
public long CurrentBalance { get; set; }
|
||||
//تغییر موجودی
|
||||
public long ChangeValue { get; set; }
|
||||
//افزایشی؟
|
||||
public bool IsIncrease { get; set; }
|
||||
//شناسه ارجاع
|
||||
public long? RefrenceId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user