// CMS Response Interface
export interface CMSResponse {
    meta: {
        status: number,
        message: string
    },
    data: CMSData,
    statusCode: number 
}

// CMS Data Interface
export interface CMSData {
    cmsId: string,
    slug: string,
    title: string,
    description: string
}
