export interface CoreDashboardCards {
    _id?: string;
    cdc_title?: string;
    cdc_description?: string;
    cdc_type?: "stats" | "chart" | "table" | "module-card" | "activity-feed" | "events" | "custom";
    cdc_api_endpoint?: string;
    cdc_api_method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
    cdc_api_payload?: any;
    cdc_config?: any;
    cdc_position?: {
        row?: number;
        col?: number;
        colspan?: number;
        rowspan?: number;
    };
    cdc_icon?: string;
    cdc_color?: string;
    cdc_visible?: boolean;
    cdc_draggable?: boolean;
    cdc_refresh_interval?: number;
    cdc_permissions?: string[];
    cdc_entity_id_syen?: string;
    cdc_created_by_user?: string;
    cdc_modified_by_user?: string;
    cdc_created_date?: Date;
    cdc_modified_date?: Date;
    cdc_isactive?: boolean;
}
