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.
|
- package model
-
- type Floor struct {
- ID string `gorm:"unique;primaryKey"`
- Name string `json:"name"`
- FloorNumber int `json:"floornumber"`
- Image string `json:"image"`
- Description string `json:"description"`
- Scale float32 `json:"scale"`
- Building string `json:"building"`
- }
|