11 lines
294 B
C#
Raw Normal View History

using PolyclinicDataModels.Models;
namespace PolyclinicContracts.BindingModels
{
public class RecipeBindingModel : IRecipeModel
{
public int Id { get; set; }
public int ProceduresCount { get; set; }
public string Comment { get; set; } = string.Empty;
}
}