Feat: 모델 타입 추가
This commit is contained in:
parent
e2a2c9f6b5
commit
b9650783cb
@ -280,3 +280,23 @@ export interface ImageFolderRequest {
|
||||
parentId: number;
|
||||
files: File[];
|
||||
}
|
||||
|
||||
// 모델 요청 DTO (API로 전달할 데이터 타입)
|
||||
export interface ModelRequest {
|
||||
name: string;
|
||||
}
|
||||
|
||||
// 모델 응답 DTO (API로부터 받는 데이터 타입)
|
||||
export interface ModelResponse {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
// 모델 카테고리 응답 DTO
|
||||
export interface ModelCategoryResponse {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
// 프로젝트 모델 리스트 응답 DTO
|
||||
export interface ProjectModelsResponse extends Array<ModelResponse> {}
|
||||
|
Loading…
Reference in New Issue
Block a user