mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -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
|
|
}
|