metasocket-cordova/src/app/chat.message.ts

8 lines
118 B
TypeScript
Raw Normal View History

2021-02-28 01:01:24 +01:00
export interface ChatMessage
{
userId: number;
username: string;
message: string;
datetime: string;
}