20 lines
502 B
C#
20 lines
502 B
C#
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; }
|
|
[DisplayName("Описание")]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|