mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
18 lines
254 B
Go
18 lines
254 B
Go
package archive
|
|
|
|
const (
|
|
BIZVote = int64(2)
|
|
)
|
|
|
|
//Vote1 .
|
|
type VoteOld struct {
|
|
VoteID int64 `json:"vote_id"`
|
|
VoteTitle string `json:"vote_title"`
|
|
}
|
|
|
|
//Vote .
|
|
type Vote struct {
|
|
VoteID int64 `json:"vote_id"`
|
|
VoteTitle string `json:"title"`
|
|
}
|