// λŒ“κΈ€ 속성 export default interface CommentMeta { id: number; boardID: number; enableComment: boolean; perPage: number; allowLike: boolean; allowDisLike: boolean; showMemberThumb: boolean; showMemberIcon: boolean; contentPlaceholder: string|null; minContentLength: number; maxContentLength: number; enableEditor: boolean; allowSecret: boolean; blameHideCount: number; deleteProtectionDays: number; updateProtectionDays: number; allowDeleteProtection: boolean; allowUpdateProtection: boolean; enableCommentUpdateLog: boolean; };