Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/HearingSearchModel.cs

18 lines
343 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.SearchModels
{
2023-03-26 20:08:05 +04:00
public class HearingSearchModel
{
public int? Id { get; set; }
public DateTime? Date { get; set; }
public int? CaseId { get; set; }
}
}