File: /var/www/quadcode.com/builds/glrt-468/0/quadcode/quadcode.com/src/type/webinars.ts
export interface IPresenter {
name: string;
description: string;
position: string;
avatar: string;
linkedin: string;
}
export interface IWebinar {
title: string;
agenda: string;
date: string;
presenters: IPresenter[];
registrationLink: string;
youTubeLink?: string;
image?: string | null;
isFeatured: boolean;
}
export interface IWebinarResponse {
totalCount: number;
webinars: IWebinar[];
}
export interface IWebinarsFilter {
excludeIds?: number[];
orderBy?: string;
order?: string;
isFeatured?: boolean;
limit?: number;
offset?: number;
}