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

16 lines
300 B
C#

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