You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
247 B

  1. package model
  2. type Zone struct {
  3. ID string `json:"id" gorm:"primaryKey"`
  4. Name string `json:"name"`
  5. Groups []string `json:"groups" gorm:"serializer:json"`
  6. Floor string `json:"floor"`
  7. Building string `json:"building"`
  8. }