18 lines
477 B
C#
18 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LawFirmContracts.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// Модель для получения всех услуг для отчета
|
|
/// </summary>
|
|
public class ReportLawServicesViewModel
|
|
{
|
|
public string ServiceName { get; set; } = string.Empty;
|
|
public List<ReportCasesViewModel> LawServices { get; set; } = new();
|
|
}
|
|
}
|