alai-server/backend/models/object_state.go

10 lines
172 B
Go
Raw Normal View History

2022-06-29 21:26:05 -04:00
package models
import "gorm.io/gorm"
type ObjectState struct {
gorm.Model
ID uint64 `json:"ID" gorm:"primaryKey"`
Name string `json:"name" gorm:"unique;not null"`
}