Files
FrontOffice.BFF/src/FrontOffice.BFF.Application/UserWalletCQ/Queries/GetUserWithdrawals/GetUserWithdrawalsResponseDto.cs
T

19 lines
638 B
C#

namespace FrontOffice.BFF.Application.UserWalletCQ.Queries.GetUserWithdrawals;
public class GetUserWithdrawalsResponseDto
{
public MetaData MetaData { get; set; } = new();
public List<UserWithdrawalModel> Models { get; set; } = new();
}
public class UserWithdrawalModel
{
public long Id { get; set; }
public long WeekDefinitionId { get; set; }
public string WeekDisplayName { get; set; } = string.Empty;
public long TotalAmount { get; set; }
public int Status { get; set; }
public int? WithdrawalMethod { get; set; }
public string? IbanNumber { get; set; }
public DateTime Created { get; set; }
}