1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace WCS.Models
- {
- public class ResponseWCSCallbackData
- {
- public int code { get; set; }
-
- public string msg { get; set; } = "ok";
- public bool isSuccess { get; set; }
- public bool isError { get; set; }
- }
- }
|