2024-04-24 18:34:15 +04:00
|
|
|
|
using PolyclinicDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicContracts.ViewModels
|
|
|
|
|
{
|
2024-04-28 11:31:34 +04:00
|
|
|
|
public class RecipeViewModel : IRecipeModel
|
2024-04-24 18:34:15 +04:00
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-04-28 20:05:31 +04:00
|
|
|
|
|
2024-04-24 18:34:15 +04:00
|
|
|
|
[DisplayName("Количество процедур")]
|
2024-04-27 23:14:58 +04:00
|
|
|
|
public int ProceduresCount { get; set; }
|
2024-04-28 20:05:31 +04:00
|
|
|
|
|
2024-04-24 18:34:15 +04:00
|
|
|
|
[DisplayName("Комментарий")]
|
|
|
|
|
public string Comment { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|