PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFirmContracts/SearchModels/ConsultationSearchModel.cs

12 lines
322 B
C#
Raw Normal View History

namespace LawFirmContracts.SearchModels
{
public class ConsultationSearchModel
{
public int? Id { get; set; }
public double? Cost { get; set; }
public DateTime? ConsultationDate { get; set; }
public int? CaseId { get; set; }
public int? GuarantorId { get; set; }
}
}