mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 14:50:24 +08:00
12 lines
287 B
Go
12 lines
287 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package shared
|
||
|
|
|
||
|
|
// Definition 数据定义
|
||
|
|
type Definition struct {
|
||
|
|
Name string `json:"name"`
|
||
|
|
Code string `json:"code"`
|
||
|
|
Description string `json:"description"`
|
||
|
|
Icon string `json:"icon"`
|
||
|
|
}
|