PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/SearchModels/VisitSearchModel.cs

19 lines
437 B
C#
Raw Normal View History

2024-05-01 00:49:33 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawCompanyContracts.SearchModels
{
public class VisitSearchModel
{
public int? Id { get; set; }
public DateTime? VisitDate { get; set; }
2024-05-01 02:32:04 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2024-05-01 00:49:33 +04:00
public int? HearingId { get; set; }
public int? ExecutorId { get; set; }
2024-05-01 00:49:33 +04:00
}
}