using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VeterinaryClinicContracts.SearchModels { public class VaccinationSearchModel { public int? Id { get; set; } public string? Name { get; set; } public int? UserId { get; set; } public int? AnimalId { get; set; } } }