place_thing.go 109 B

123456789
  1. package models
  2. import "time"
  3. type PlaceThing struct {
  4. PlaceID int
  5. ThingID int
  6. CreatedAt time.Time
  7. }