This commit is contained in:
박원엽
2026-05-28 16:52:33 +09:00
parent 116b9a4fd2
commit f4481b88cb
13 changed files with 1853 additions and 454 deletions

View File

@@ -34,6 +34,13 @@ export interface PostListResponse {
last: boolean;
}
export interface PostSaveRequest {
title: string;
content: string;
categoryId: number;
tags: string[];
}
// 4. 로그인 응답
export interface AuthResponse {
grantType: string;
@@ -128,4 +135,4 @@ export interface CommentSaveRequest {
// 16. 댓글 삭제 요청 (비회원 검증용)
export interface CommentDeleteRequest {
guestPassword?: string;
}
}