Refactor code structure for improved readability and maintainability
This commit is contained in:
@@ -256,14 +256,13 @@ export interface Blog {
|
||||
title: string;
|
||||
slug: string;
|
||||
summary: string | null;
|
||||
content: string;
|
||||
cover_image: string | null;
|
||||
body: string;
|
||||
image_url: string | null;
|
||||
status: 'draft' | 'published';
|
||||
author_name: string;
|
||||
views_count: number;
|
||||
author?: { uuid: string; name: string } | null;
|
||||
tags: string[];
|
||||
published_at: string | null;
|
||||
created_at: string;
|
||||
updated_at?: string;
|
||||
}
|
||||
|
||||
export interface Secretary {
|
||||
|
||||
Reference in New Issue
Block a user