Files
CMS/src/CMSMicroservice.Domain/Entities/UserWalletChangeLog.cs
2025-11-12 02:24:02 +03:30

18 lines
548 B
C#

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; }
}