ErrorModel.cs 345 B

12345678910111213
  1. using MessagePack;
  2. namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
  3. {
  4. [MessagePackObject(keyAsPropertyName: true)]
  5. public class ErrorModel<E>
  6. {
  7. public float code { get; set; }
  8. public string message { get; set; }
  9. public string devmsg { get; set; }
  10. public E data { get; set; }
  11. }
  12. }