14 lines
357 B
C#
14 lines
357 B
C#
namespace VeterinaryDataModels.Models
|
|
{
|
|
public interface IPetModel : IId
|
|
{
|
|
int OwnerId { get; }
|
|
string PetName { get; }
|
|
string PetType { get; }
|
|
string PetBreed { get; }
|
|
string PetGender { get; }
|
|
Dictionary<int, IVisitModel> VisitPets { get; }
|
|
Dictionary<int, IPurchaseModel> PurchasePets { get; }
|
|
}
|
|
}
|