boardGroup.ts 111 B

123456
  1. // 게시판 분류
  2. export default interface BoardGroup {
  3. id: number;
  4. code: string;
  5. name: string;
  6. }