using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VeterinaryClinicDataModels.Models { public interface IAnimalModel : IId { string Type { get; } string Breed { get; } int Age { get; } int UserId { get; } Dictionary AnimalMedications { get; } } }