Newer
Older
taehui / taehui-fe / src / app / www / type / CommentItem.ts
@Taehui Taehui on 17 Mar 153 bytes 2024-03-17 오후 11:29
export type CommentItem = {
  commentID: number;
  avatarID: string;
  avatarName: string;
  date: string;
  text: string;
  comments: CommentItem[];
};