/**
 * Represents a stream's category.
 */
export interface Category {
    /**
     * The category Id.
     */
    id: string;
    /**
     * The category name.
     */
    name: string;
}
