my-chat-room/libs/api-interfaces/src/lib/api-interfaces.ts

7 lines
105 B
TypeScript
Raw Normal View History

2020-10-09 13:32:53 +00:00
export interface Message {
2020-10-09 16:21:21 +00:00
creationDate: string;
2020-10-09 13:32:53 +00:00
message: string;
2020-10-09 16:21:21 +00:00
user: string;
color: string;
2020-10-09 13:32:53 +00:00
}