2023-04-08 17:03:58 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CaseAccountingContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportCaseSpecializationViewModel
|
|
|
|
|
{
|
|
|
|
|
public string Specialization { get; set; } = string.Empty;
|
2023-05-20 00:24:04 +04:00
|
|
|
|
public List<string> Cases { get; set; } = new();
|
2023-04-08 17:03:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|