send.ts 121 B

123456
  1. export type NoteSendRequest = {
  2. receiverMemberID?: number;
  3. title: string;
  4. content: string;
  5. sendToRandom?: boolean;
  6. };