22 lines
425 B
C#
22 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VeterinaryClinicContracts.SearchModels
|
|
{
|
|
public class AnimalSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public string? Breed { get; set; }
|
|
|
|
public int? Age { get; set; }
|
|
|
|
public int? UserId { get; set; }
|
|
}
|
|
}
|