mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
22 lines
290 B
Go
22 lines
290 B
Go
package pgc
|
|
|
|
// ParamStyle .
|
|
type ParamStyle struct {
|
|
Name string `json:"name"`
|
|
StyleID int `json:"style_id"`
|
|
}
|
|
|
|
// StyleRes .
|
|
type StyleRes struct {
|
|
ID int
|
|
Style string
|
|
Category int
|
|
}
|
|
|
|
// LabelRes .
|
|
type LabelRes struct {
|
|
Name string
|
|
Value int
|
|
Category int
|
|
}
|