后台教程

This commit is contained in:
2025-03-03 22:11:01 +08:00
parent f01f8a174d
commit a7d8663f4d
9 changed files with 235 additions and 22 deletions

View File

@@ -3,3 +3,15 @@ export enum Role {
Admin = "admin",
Normal = "normal",
}
export interface TutorialSlim {
display: string
title: string
is_public: boolean
}
export interface TutorialIn {
display: string
title: string
content: string
}