memtionSuggetion.ts 135 B

1234567
  1. // 댓글 멘션
  2. export default interface MemberSuggestion {
  3. id: number;
  4. sid: string;
  5. name: string | null;
  6. thumb: string | null;
  7. };