animal.go 217 B

1234567891011121314
  1. package shelter
  2. type Animal interface {
  3. ID() string
  4. Name() string
  5. Age() int
  6. Weight() float64
  7. Breed() string
  8. DailyFoodGrams() int
  9. DailyExerciseMinutes() int
  10. IsAdopted() bool
  11. SetAdopted(bool)
  12. Type() string
  13. }