mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
|
export interface ISignOnEvent {
|
||
|
id: number;
|
||
|
username: string;
|
||
|
auth_type: string;
|
||
|
created_at: Date;
|
||
|
successful: boolean;
|
||
|
ip?: string;
|
||
|
failure_reason?: string;
|
||
|
}
|