2023-05-17 18:49:15 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportClientCardsViewModel
|
|
|
|
|
{
|
2023-05-17 20:04:01 +04:00
|
|
|
|
public List<CheckboxViewModel>? Cards { get; set; } = new();
|
2023-05-17 18:49:15 +04:00
|
|
|
|
|
2023-05-17 20:04:01 +04:00
|
|
|
|
public List<ReportViewModel>? Operations { get; set; } = new();
|
2023-05-17 18:49:15 +04:00
|
|
|
|
}
|
|
|
|
|
}
|