2024-05-01 01:54:08 +04:00
|
|
|
|
namespace LawCompanyContracts.SearchModels
|
|
|
|
|
{
|
2024-05-01 23:48:28 +04:00
|
|
|
|
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; }
|
|
|
|
|
}
|
2024-05-01 01:54:08 +04:00
|
|
|
|
}
|