@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 334 B
TypeScript
import { Guid } from "../shared";
import { Identity } from "./identities";
export interface LoginLogItem {
id: number;
identity: Identity;
device: string;
status: string;
ipAddress: string;
location: string;
url: string;
currentSessionId: string;
authenticationTypeId: Guid;
createdAt: Date;
}