Rogashova_E.A._CourseWork_H.../HospitalContracts/SearchModels/SymptomsSearchModel.cs

15 lines
300 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.SearchModels
{
public class SymptomsSearchModel
{
public int? Id { get; set; }
public string? SymptomName { get; set; }
}
}