Generator Changes at 11/25/2025 2:47:13 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 02:50:11 +03:30
parent 34f66fcb2d
commit 90e260eb30
6 changed files with 39 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
namespace FrontOffice.BFF.Application.UserWalletCQ.Commands.WithdrawBalance;
public record WithdrawBalanceCommand : IRequest<WithdrawBalanceResponseDto>
public record WithdrawBalanceCommand : IRequest<Unit>
{
}

View File

@@ -1,5 +1,5 @@
namespace FrontOffice.BFF.Application.UserWalletCQ.Queries.GetAllUserWalletChangeLog;
public record GetAllUserWalletChangeLogQuery : IRequest<Unit>
public record GetAllUserWalletChangeLogQuery : IRequest<GetAllUserWalletChangeLogResponseDto>
{
}

View File

@@ -0,0 +1,23 @@
namespace FrontOffice.BFF.Application.UserWalletCQ.Queries.GetAllUserWalletChangeLog;
public class GetAllUserWalletChangeLogResponseDto
{
//متادیتا
public MetaData MetaData { get; set; }
//مدل خروجی
public List<GetAllUserWalletChangeLogResponseModel>? Models { get; set; }
}public class GetAllUserWalletChangeLogResponseModel
{
//موجودی
public long CurrentBalance { get; set; }
//تغییر موجودی
public long ChangeValue { get; set; }
//موجودی جاری شبکه
public long CurrentNetworkBalance { get; set; }
//تغییر موجودی شبکه
public long ChangeNerworkValue { get; set; }
//افزایشی؟
public bool IsIncrease { get; set; }
//شناسه ارجاع
public long? RefrenceId { get; set; }
}