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; } } }