完成BlogApi

This commit is contained in:
2025-05-18 14:29:42 +08:00
parent dccc703ccd
commit 44594bf1b1
5 changed files with 22 additions and 0 deletions

View File

@@ -2,5 +2,7 @@ export interface Blog {
id: string;
title: string;
description: string;
viewCount: number;
contentUrl: string;
createdAt: string;
}