| 12345678910111213141516171819202122 |
- // 댓글 속성
- 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;
- };
|