|
@@ -0,0 +1,22 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace IMCS.CCS.Models.vo
|
|
|
+{
|
|
|
+ public class ResponseECSCallbackData
|
|
|
+ {
|
|
|
+ public string code { get; set; }
|
|
|
+
|
|
|
+ public bool data { get; set; }
|
|
|
+
|
|
|
+ public string msg { get; set; } = "ok";
|
|
|
+
|
|
|
+ public bool isSuccess { get; set; }
|
|
|
+
|
|
|
+ public bool isError { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+}
|