Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/HearingSearchModel.cs
2023-03-26 20:08:05 +04:00

18 lines
343 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.SearchModels
{
public class HearingSearchModel
{
public int? Id { get; set; }
public DateTime? Date { get; set; }
public int? CaseId { get; set; }
}
}