2024-04-18 00:10:00 +04:00
|
|
|
|
using PolyclinicDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicContracts.ViewModels
|
|
|
|
|
{
|
2024-04-28 12:12:39 +04:00
|
|
|
|
public class DiagnoseViewModel : IDiagnoseModel
|
2024-04-18 00:10:00 +04:00
|
|
|
|
{
|
|
|
|
|
[DisplayName("Название")]
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-05-01 10:33:00 +04:00
|
|
|
|
|
2024-04-18 00:10:00 +04:00
|
|
|
|
[DisplayName("Комментарий")]
|
|
|
|
|
public string Comment { get; set; } = string.Empty;
|
2024-05-01 10:33:00 +04:00
|
|
|
|
|
|
|
|
|
[DisplayName("Дата 'от'")]
|
2024-05-01 11:20:58 +04:00
|
|
|
|
public DateTime DateStartDiagnose { get; set; }
|
2024-05-01 10:33:00 +04:00
|
|
|
|
|
|
|
|
|
[DisplayName("Дата 'до'")]
|
2024-05-01 11:20:58 +04:00
|
|
|
|
public DateTime? DateStopDiagnose { get; set; }
|
2024-04-27 22:59:12 +04:00
|
|
|
|
public int UserId { get; set; }
|
2024-04-18 00:10:00 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|