package shelter type Animal interface { ID() string Name() string Age() int Weight() float64 Breed() string DailyFoodGrams() int DailyExerciseMinutes() int IsAdopted() bool SetAdopted(bool) Type() string }