2024-04-17 18:43:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicContracts.SearchModels
|
|
|
|
|
{
|
2024-04-17 22:18:05 +04:00
|
|
|
|
public class RecipeSearchModel
|
2024-04-17 18:43:37 +04:00
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public int? CountProcedures { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|