BaseResponse.cs 440 B

12345678910111213141516
  1. using MessagePack;
  2. using System.Collections.Generic;
  3. namespace TEAMModelOS.SDK.Extension.DataResult.ResponseData
  4. {
  5. [MessagePackObject(keyAsPropertyName: true)]
  6. public class BaseResponse : TimeStampResponse
  7. {
  8. public Dictionary<string, object> extend { get; set; }
  9. public string message { get; set; } = "success";
  10. public int code { get; set; }
  11. public BaseResponse()
  12. {
  13. }
  14. }
  15. }