2024-05-01 00:49:33 +04:00
|
|
|
|
using LawCompanyDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class VisitViewModel : IVisitModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[DisplayName("Дата визита")]
|
|
|
|
|
public DateTime VisitDate { get; set; }
|
|
|
|
|
public int HearingId { get; set; }
|
|
|
|
|
public Dictionary<int, IClientModel> VisitClients { get; set; } = new();
|
2024-05-01 15:08:34 +04:00
|
|
|
|
public int ExecutorId { get; set; }
|
2024-05-01 00:49:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|