1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMS.Info
- {
- public class WCSResponse
- {
- public bool isSuccess { get; set; }
- public string code { get; set; }
- public object data { get; set; }
- public string msg { get; set; }
- public object stamp { get; set; }
- }
- }
|