5 lines
88 B
TypeScript
5 lines
88 B
TypeScript
export interface IMessageDto {
|
|
text: string;
|
|
user_id: number;
|
|
thread_id: number;
|
|
} |