package published
|
|
|
|
import (
|
|
"cygnux/kepler/models"
|
|
"cygnux/kepler/models/metas"
|
|
)
|
|
|
|
const PUBLISHEDLIVECATEGORY = "published_live_categories"
|
|
|
|
type PublishedLiveCategory struct {
|
|
metas.LiveCategory
|
|
}
|
|
|
|
const PUBLISHEDLIVEPROGRAM = "published_live_programs"
|
|
|
|
type PublishedLiveProgram struct {
|
|
metas.LiveProgram
|
|
Categories models.HSTOREDictionary `json:"categories,omitempty"`
|
|
}
|
|
|
|
const PUBLISHEDLIVEEVENT = "published_live_events"
|
|
|
|
type PublishedLiveEvent struct {
|
|
metas.LiveEvent
|
|
}
|