summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/lib/models/ISession.ts
blob: f7ed46b9fd2dab1bd25c9473058d1d9028868077 (plain) (blame)
1
2
3
4
5
6
7
export interface ISession {
    profile: {
        username: string,
        id: string,
    },
    lastChecked: number,
}