interface SessionInterface {
    id?: number;
    userId: number;
    accountId: number | null;
    token: Text;
}