export interface Advertisement {
    id?: number;
    title?: string;
    description?: string;
    icon?: string;
    colors?: Colors;
    target?: string;
    url?: string;
}
export interface Colors {
    text?: string;
    bg?: string;
}
