owpengram-server/internal/domain/premium.go
2026-07-26 15:59:25 +08:00

10 lines
344 B
Go

package domain
// PremiumPromoCatalog is the immutable, domain-only media catalog returned by
// help.getPremiumPromo. VideoSections[i] describes Videos[i]; callers must
// preserve the one-to-one ordering because official clients use positional
// lookup.
type PremiumPromoCatalog struct {
VideoSections []string
Videos []Document
}