Files
nirvana/packages/common/models/message.ts
2022-01-28 14:16:29 -08:00

16 lines
304 B
TypeScript

import { Timestamp } from "firebase/firestore";
export class Message {
id: string;
audioDataUrl: string;
senderUserId: string;
receiverUserId: string;
senderReceiver: string[]; // composite to make querying easier in the future
createdDate: Timestamp;
// firstListenDate: Timestamp;
}