mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
14 lines
176 B
Go
14 lines
176 B
Go
|
|
package charge
|
||
|
|
|
||
|
|
import (
|
||
|
|
"go-common/library/time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Archive archive detail
|
||
|
|
type Archive struct {
|
||
|
|
ID int64
|
||
|
|
IncCharge int64
|
||
|
|
TagID int64
|
||
|
|
Date time.Time
|
||
|
|
}
|