mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 15:48:07 -05:00
13 lines
177 B
Go
13 lines
177 B
Go
package model
|
|
|
|
// ugc pay type
|
|
const (
|
|
UgcPayTypeArchive = "archive"
|
|
)
|
|
|
|
// ugc pay relation state
|
|
const (
|
|
UgcPayRelationStatePaid = "paid"
|
|
UgcPayRelationStateNone = "none"
|
|
)
|