Rogashova_E.A._CourseWork_H.../HospitalContracts/ViewModels/SymptomsViewModel.cs

20 lines
535 B
C#
Raw Permalink Normal View History

using HospitalDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.ViewModels
{
public class SymptomsViewModel: ISymptomsModel
{
public int Id { get; set; }
[DisplayName("Симптом")]
public string SymptomName { get; set; } = string.Empty;
[DisplayName("Описание")]
public string? Description { get; set; } = string.Empty;
}
}