2023-04-04 09:51:08 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HospitalContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class SymptomsSearchModel
|
|
|
|
|
{
|
2023-04-06 21:56:38 +04:00
|
|
|
|
public int? Id { get; set; }
|
2023-04-05 00:33:37 +04:00
|
|
|
|
public string? SymptomName { get; set; }
|
2023-04-04 09:51:08 +04:00
|
|
|
|
}
|
|
|
|
|
}
|