Files
doneit-web/src/app/models/chat/contact.model.ts
T

6 lines
103 B
TypeScript
Raw Normal View History

2021-01-21 16:27:04 +01:00
export class Contact{
_id: string;
username: string;
2021-01-22 15:28:52 +01:00
name:string;
isChecked: boolean;
2021-01-21 16:27:04 +01:00
}