namespace MedicalDatabaseContracts.SearchModels { public class SpecializationSearchModel : AbstractSearchModel { public string? Name { get; set; } public bool? IsPediatric { get; set; } public bool? IsTherapeutic { get; set; } } }