info.go 349 B

123456789101112
  1. package models
  2. import "gorm.io/gorm"
  3. type Info struct {
  4. gorm.Model
  5. Id string // 当前设备的随机ID
  6. Version string // 当前设备的版本
  7. MediaServer string // 媒体服务的名称,没有使用则是 None
  8. EnableShare bool // 是否开启了共享功能
  9. EnableApiKey bool // 是否开启本地 http api 功能
  10. }