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.
|
package tab |
|
|
|
type Menu struct { |
|
ID int64 `json:"id,omitempty"` |
|
TagID int64 `json:"tag_id,omitempty"` |
|
TabID int64 `json:"tab_id,omitempty"` |
|
Title string `json:"title,omitempty"` |
|
Name string `json:"name,omitempty"` |
|
Priority int `json:"priority,omitempty"` |
|
}
|
|
|