终端一体化运控平台
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.

LebaiHttpResult.cs 228 B

2 years ago
123456789101112131415
  1. namespace Lebai.SDK.Dtos
  2. {
  3. public class LebaiHttpResult<T>
  4. {
  5. /// <summary>
  6. /// 数据
  7. /// </summary>
  8. public T Data { get; set; }
  9. /// <summary>
  10. /// 错误码
  11. /// </summary>
  12. public int Code { get; set; }
  13. }
  14. }