summaryrefslogtreecommitdiff
path: root/server/web/src/interfaces/Client.interface.ts
blob: cb7f03639518cc5bb39be0a1a95abce3fc19b1a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
export interface IClient {
    // CONSTANT : does not including the other
    // client categories not explicitly accessed
    resource_usage: string;
    active_window: string;
    country_code: string;
    connect_ip: string;
    idle_time: string;
    unique_id: string;
    country: string;
}