Rogashova_E.A._CourseWork_H.../HospitalContracts/SearchModels/RecipesSearchModel.cs

17 lines
387 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.SearchModels
{
public class RecipesSearchModel
{
public int? Id { get; set; }
2023-04-07 00:53:55 +04:00
public int? ClientId { get; set; }
2023-04-07 11:31:56 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}