mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
14 lines
175 B
Go
14 lines
175 B
Go
package model
|
|
|
|
// SeriesItem .
|
|
type SeriesItem struct {
|
|
Field string
|
|
Rows []*float64
|
|
}
|
|
|
|
// Series data
|
|
type Series struct {
|
|
Timestamps []int64
|
|
Items []*SeriesItem
|
|
}
|