19 lines
440 B
C#
19 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CaseAccountingContracts.ViewModels
|
|
{
|
|
public class ReportHearingSpecializationViewModel
|
|
{
|
|
public string Information { get; set; } = string.Empty;
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
public string Specialization { get; set; } = string.Empty;
|
|
}
|
|
}
|