import { PasswordStrengthLevel } from "./PasswordStrengthLevel"; import { IdentityType } from "./IdentityType"; export interface Session { SessionId: string; UserId: string; AuthModes: string; PasswordStrengthLevel: PasswordStrengthLevel; CertThumbprint: string; Phone: string; Email: string; Login: string; IPAddress: string; CreationDate: number; ExtendInfo: string; IdentityType: IdentityType; }