9 lines
248 B
C#
9 lines
248 B
C#
|
|
namespace FrontOffice.BFF.Application.UserWalletCQ.Queries.GetUserWallet;
|
||
|
|
public class GetUserWalletResponseDto
|
||
|
|
{
|
||
|
|
//موجودی
|
||
|
|
public long Balance { get; set; }
|
||
|
|
//موجودی شبکه
|
||
|
|
public long NetworkBalance { get; set; }
|
||
|
|
|
||
|
|
}
|