You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
387 B
TypeScript
19 lines
387 B
TypeScript
export class Response {
|
|
public LanguageID?: number;
|
|
public ErrorCode;
|
|
public ErrorEndUserMessage;
|
|
public ErrorMessage;
|
|
public ErrorType: number;
|
|
public FoodCategory: number;
|
|
public IsAuthenticated: boolean;
|
|
public IsRegister: boolean;
|
|
/*
|
|
1 success
|
|
2 error
|
|
*/
|
|
public MessageStatus: number;
|
|
public SuccessMsg;
|
|
public Message;
|
|
|
|
}
|