740f8ec2ef
Мать жива?
16 lines
377 B
C#
16 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CaseAccountingContracts.ViewModels
|
|
{
|
|
public class CaseLawyerViewModel
|
|
{
|
|
public string Case { get; set; } = string.Empty;
|
|
public DateTime Date { get; set; }
|
|
public string Lawyer { get; set; } = string.Empty;
|
|
}
|
|
}
|