using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VeterinaryContracts.SearchModels { public class DoctorSearchModel { public int? Id { get; set; } public string? DoctorFIO { get; set; } public string? Login { get; set; } public string? Password { get; set; } } }