CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptContracts/ViewModels/ReportCashierAccountsViewModel.cs

16 lines
375 B
C#
Raw Normal View History

2023-05-17 20:46:26 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.ViewModels
{
public class ReportCashierAccountsViewModel
{
public List<CheckboxViewModel>? Accounts { get; set; } = new();
public List<ReportViewModel>? Operations { get; set; } = new();
}
}