export interface IAuthLoginRequest {
    loginKey: string;
    password: string;
}
export interface IVerifyTwoFactorRequest {
    code: string;
    secureCode: string;
}
