export class AuthUserAtrErrors { firstName: AuthUserAtrErrorType = new AuthUserAtrErrorType(); lastName: AuthUserAtrErrorType = new AuthUserAtrErrorType(); email: AuthUserAtrErrorType = new AuthUserAtrErrorType(); password: AuthUserAtrErrorType = new AuthUserAtrErrorType(); } export class AuthUserAtrErrorType { wrongData: boolean = false; required: boolean = false; notConfirmed: boolean = false; }