mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
11 lines
458 B
Go
11 lines
458 B
Go
|
|
package systemconfigs
|
||
|
|
|
||
|
|
// 界面相关配置
|
||
|
|
type UIConfig struct {
|
||
|
|
ProductName string `json:"productName"` // 产品名
|
||
|
|
AdminSystemName string `json:"adminSystemName"` // 管理员系统名称
|
||
|
|
ShowOpenSourceInfo bool `json:"showOpenSourceInfo"` // 是否显示开源信息
|
||
|
|
ShowVersion bool `json:"showVersion"` // 是否显示版本号
|
||
|
|
Version string `json:"version"` // 显示的版本号
|
||
|
|
}
|