You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
834 B

namespace Common
{
public class APIJsonResponse
{
public string ResponseCode { get; set; }
public string Msg { get; set; }
public string Id { get; set; }
public object Data { get; set; }
public string Extra { get; set; }
public string Extra1 { get; set; }
public string Extra3 { get; set; }
public string FootNoteMessage { get; set; }
public void SetResponse(string responseCode, string msg, string id = null, string extra = null, string extra1 = null, string extra3 = null, string footNoteMessage = "")
{
ResponseCode = responseCode;
Msg = msg;
Id = id;
Extra = extra;
Extra1 = extra1;
Extra3 = extra3;
FootNoteMessage = footNoteMessage;
}
}
}