import { AppRole } from "../../common/enum/app-role"; export interface Principal { id: number; token: string; name: string; expiresAt: Date; authorities: AppRole[]; avatarUrl: string; timezone: string; language: string; culture: string; }