TapEngineBridgeResult.cs 391 B

1234567891011121314
  1. using Newtonsoft.Json;
  2. namespace TapSDK.Core
  3. {
  4. public class TapEngineBridgeResult
  5. {
  6. public const int RESULT_SUCCESS = 0;
  7. public const int RESULT_ERROR = -1;
  8. [JsonProperty("code")] public int code { get; set; }
  9. [JsonProperty("message")] public string message { get; set; }
  10. [JsonProperty("content")] public string content { get; set; }
  11. }
  12. }