18 lines
527 B
C#
18 lines
527 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CaseAccountingContracts.ViewModels
|
|
{
|
|
public class ReportCaseSpecializationViewModel
|
|
{
|
|
public string CaseName { get; set; } = string.Empty;
|
|
public string Applicant { get; set; } = string.Empty;
|
|
public string Defendant { get; set; } = string.Empty;
|
|
public DateTime Date { get; set; }
|
|
public string Specialization { get; set; } = string.Empty;
|
|
}
|
|
}
|