Case_accounting/CaseAccounting/CaseAccountingContracts/ViewModels/CaseLawyerViewModel.cs
2023-05-20 03:13:10 +04:00

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;
}
}