3x-ui/database/model/shared_state.go

8 lines
190 B
Go
Raw Normal View History

package model
type SharedState struct {
Key string `json:"key" gorm:"primaryKey"`
Version int64 `json:"version" gorm:"not null;default:0"`
UpdatedAt int64 `json:"updatedAt"`
}