CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptContracts/ViewModels/ReportClientCardsViewModel.cs
2023-05-17 20:04:01 +04:00

16 lines
368 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<CheckboxViewModel>? Cards { get; set; } = new();
public List<ReportViewModel>? Operations { get; set; } = new();
}
}