import { BlogStatusType } from "../enum/blog.enum";
export interface IBlogUpsertRequest {
    _id: string;
    title: string;
    slug?: string;
    status: BlogStatusType;
    abstract: string;
    content: string;
    tags: string[];
    seo: {
        title: string;
        description: string;
        keywords: string[];
    };
}
