22 lines
405 B
C#
22 lines
405 B
C#
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<int, IMedicationModel> AnimalMedications { get; }
|
|
}
|
|
}
|