1 | export interface IValidationErrorInfo {
|
2 | message: string;
|
3 | members: string[];
|
4 | }
|
5 | export interface IErrorInfo {
|
6 | code: number;
|
7 | message: string;
|
8 | details: string;
|
9 | validationErrors: IValidationErrorInfo[];
|
10 | }
|
11 | export interface IAjaxResponse {
|
12 | success: boolean;
|
13 | result?: any;
|
14 | targetUrl?: string;
|
15 | error?: IErrorInfo;
|
16 | unAuthorizedRequest: boolean;
|
17 | __abp: boolean;
|
18 | }
|