mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
13 lines
182 B
Go
13 lines
182 B
Go
|
|
package archive
|
||
|
|
|
||
|
|
const (
|
||
|
|
// BIZVote Business Type Vote
|
||
|
|
BIZVote = int64(2)
|
||
|
|
)
|
||
|
|
|
||
|
|
//Vote .
|
||
|
|
type Vote struct {
|
||
|
|
VoteID int64 `json:"vote_id"`
|
||
|
|
VoteTitle string `json:"vote_title"`
|
||
|
|
}
|