完成博客权限修改

This commit is contained in:
2025-06-23 00:07:23 +08:00
parent a38463837f
commit edc605fb62
10 changed files with 178 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
import { BlogPermission } from "./Blog.Permission.enum";
export interface Blog {
id: string;
title: string;
@@ -5,4 +7,5 @@ export interface Blog {
viewCount: number;
contentUrl: string;
createdAt: string;
permissions: BlogPermission[];
}