Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package ugc
// SimpleArc provides the fields for license owner sync
type SimpleArc struct {
AID int64
MID int64
TypeID int32
Videos int64
Title string
Cover string
Content string
Duration int64
Pubtime string
}
// SimpleVideo provides the fields for license owner sync
type SimpleVideo struct {
ID int
CID int64
IndexOrder int64
Eptitle string
Duration int64
Description string
}
// LicSke represents the skeleton of a license audit message
type LicSke struct {
Arc *SimpleArc
Videos []*SimpleVideo
}