You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
358 B
16 lines
358 B
package up |
|
|
|
//Switch for up switch controll. |
|
type Switch struct { |
|
State int32 `json:"state"` |
|
Show int `json:"show"` |
|
Face string `json:"face"` |
|
} |
|
|
|
// SpecialGroup UP主分组关联关系 |
|
type SpecialGroup struct { |
|
ID int64 `json:"id"` |
|
MID int64 `json:"mid"` |
|
GroupID int64 `json:"group_id"` |
|
GroupName string `json:"group_name"` |
|
}
|
|
|