commentMeta.ts 552 B

12345678910111213141516171819202122
  1. // 댓글 속성
  2. export default interface CommentMeta {
  3. id: number;
  4. boardID: number;
  5. enableComment: boolean;
  6. perPage: number;
  7. allowLike: boolean;
  8. allowDisLike: boolean;
  9. showMemberThumb: boolean;
  10. showMemberIcon: boolean;
  11. contentPlaceholder: string|null;
  12. minContentLength: number;
  13. maxContentLength: number;
  14. enableEditor: boolean;
  15. allowSecret: boolean;
  16. blameHideCount: number;
  17. deleteProtectionDays: number;
  18. updateProtectionDays: number;
  19. allowDeleteProtection: boolean;
  20. allowUpdateProtection: boolean;
  21. enableCommentUpdateLog: boolean;
  22. };