Simple improvement for when serializing the TMVCResponse object to a Json string;

This commit is contained in:
Marcelo Jaloto 2022-05-31 15:43:22 -03:00
parent 8f25550899
commit c069a618f6

View File

@ -1039,7 +1039,7 @@ type
constructor Create(AStatusCode: Integer; AReasonString: string; AMessage: string); overload; constructor Create(AStatusCode: Integer; AReasonString: string; AMessage: string); overload;
property StatusCode: Integer read FStatusCode write FStatusCode; property StatusCode: Integer read FStatusCode write FStatusCode;
property ReasonString: string read FReasonString write FReasonString; property ReasonString: string read FReasonString write FReasonString;
property message: string read FMessage write FMessage; property Message: string read FMessage write FMessage;
property Data: TObject read fDataObject write fDataObject; property Data: TObject read fDataObject write fDataObject;
end; end;