summaryrefslogtreecommitdiff
path: root/classes/Group.ts
blob: 7f1e95822c3de9ca64a55b2ff9d9cc332830db2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {Chat} from "./Chat";
import {Client} from "./Client";

export class Group extends Chat {
    public group: boolean = true;
    public id: string;
    private client: Client;

    constructor(groupId: string, client: Client) {
        super();
        this.id = groupId;
        this.client = client;
    }
}