// 게시판 관리자 export default interface BoardManager { id: number; boardID: number; user: { id: string; email: string; }; canEdit: boolean; canDelete: boolean; updatedAt: string|null; createdAt: string; }