export interface ServicesProps {
    id: number;
    title: string;
    slug: string;
    description: string;
    image: string;
    status: string;
    author: any;
    category: string;
    post_by: any;
    edit_by: any;
    created_at: string;
    updated_at: string;
}
