mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
16 lines
188 B
Go
16 lines
188 B
Go
package model
|
|
|
|
// Score ...
|
|
type Score struct {
|
|
SeasonID string
|
|
SeasonName string
|
|
Score float64
|
|
}
|
|
|
|
// Sug ...
|
|
type Sug struct {
|
|
Item *Item
|
|
SeasonID int64
|
|
Score int64
|
|
}
|