ResponseECSCallbackData.cs 407 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace IMCS.CCS.Models.vo
  6. {
  7. public class ResponseECSCallbackData
  8. {
  9. public string code { get; set; }
  10. public bool data { get; set; }
  11. public string msg { get; set; } = "ok";
  12. public bool isSuccess { get; set; }
  13. public bool isError { get; set; }
  14. }
  15. }