12 lines
243 B
Go
12 lines
243 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Cage struct {
|
|
ID string `json:"id"`
|
|
Game Game `json:"game"`
|
|
Hamsters []*Hamster `json:"hamsters"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt *time.Time `json:"updatedAt"`
|
|
}
|