Rogashova_E.A._CourseWork_H.../HospitalContracts/BindingModels/SymptomsBindingModel.cs

18 lines
430 B
C#

using HospitalDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.BindingModels
{
public class SymptomsBindingModel: ISymptomsModel
{
public int Id { get; set; }
public string SymptomName { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}
}