CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptContracts/ViewModels/ReportClientCardsViewModel.cs
2023-05-17 18:49:15 +04:00

18 lines
441 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.ViewModels
{
public class ReportClientCardsViewModel
{
public List<CardViewModel>? Cards { get; set; } = new();
public List<DebitingViewModel>? Debitings { get; set; } = new();
public List<CreditingViewModel>? Creditings { get; set; } = new();
}
}