1234567891011121314 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK
- {
- public class EmptyJosnResponse :BaseResponse
- {
- public object result { get; set; } = null;
- public Dictionary<string,object> error { get; set; } = null;
- public int code { get; set; } = 1;
- public string message { get; set; } = "Empty";
- }
- }
|