|
|
|
@@ -1,10 +1,9 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
|
using System.Threading.Tasks; |
|
|
|
|
|
|
|
using Newtonsoft.Json; |
|
|
|
|
|
|
|
namespace jdis_import.RESTObjects |
|
|
|
{ |
|
|
|
[JsonObject(MemberSerialization.OptIn)] |
|
|
|
public class RESTMeta |
|
|
|
{ |
|
|
|
#region Fields |
|
|
|
@@ -17,21 +16,25 @@ namespace jdis_import.RESTObjects |
|
|
|
#endregion |
|
|
|
|
|
|
|
#region Properties |
|
|
|
[JsonProperty(PropertyName = "numResults")] |
|
|
|
public int numResults |
|
|
|
{ |
|
|
|
get { return _numResults; } |
|
|
|
set { _numResults = value; } |
|
|
|
} |
|
|
|
[JsonProperty(PropertyName = "success")] |
|
|
|
public bool success |
|
|
|
{ |
|
|
|
get { return _success; } |
|
|
|
set { _success = value; } |
|
|
|
} |
|
|
|
[JsonProperty(PropertyName = "errorMessage")] |
|
|
|
public string errorMessage |
|
|
|
{ |
|
|
|
get { return _errorMessage; } |
|
|
|
set { _errorMessage = value; } |
|
|
|
} |
|
|
|
[JsonProperty(PropertyName = "type")] |
|
|
|
public string type |
|
|
|
{ |
|
|
|
get { return _type; } |
|
|
|
|