You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
404 B
14 lines
404 B
package model |
|
|
|
// Live . |
|
type Live struct { |
|
RoomStatus int `json:"roomStatus"` |
|
LiveStatus int `json:"liveStatus"` |
|
URL string `json:"url"` |
|
Title string `json:"title"` |
|
Cover string `json:"cover"` |
|
Online int `json:"online"` |
|
RoomID int64 `json:"roomid"` |
|
RoundStatus int `json:"roundStatus"` |
|
BroadcastType int `json:"broadcast_type"` |
|
}
|
|
|