2024-04-18 21:44:46 +04:00
|
|
|
|
using LawFimDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace LawFirmContracts.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-04-27 23:00:03 +04:00
|
|
|
|
public int ExecutorId { get; set; }
|
2024-04-18 21:44:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|