export interface DCollection {
    title: string;
    content: string;
    params: {
        [key: string]: string;
    };
}
