6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
import { ObjectId } from 'mongodb';
|
|
|
|
export default class CreateConversationResponse {
|
|
constructor(public conversationId: ObjectId) {}
|
|
}
|