blob: 9698bfe85129565f5fef642d78284d704813e3c7 [file] [log] [blame]
export class Session {
constructor(
readonly token: string
) {
// No-op.
}
}
export interface LoginResponseDto {
readonly status: string
readonly acsTok: string
}