nitro-react/src/views/friends/common/MessengerThreadChatGroup.ts

29 lines
542 B
TypeScript
Raw Normal View History

2021-09-22 03:48:00 +02:00
import { MessengerThreadChat } from './MessengerThreadChat';
export class MessengerThreadChatGroup
{
private _userId: number;
private _chats: MessengerThreadChat[];
constructor(userId: number)
{
this._userId = userId;
this._chats = [];
}
public addChat(message: MessengerThreadChat): void
{
this._chats.push(message);
}
public get userId(): number
{
return this._userId;
}
public get chats(): MessengerThreadChat[]
{
return this._chats;
}
}