纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
454 B

2 days ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Runtime.Serialization;
  6. namespace ICSSoft.Entity
  7. {
  8. [DataContract]
  9. public class ResultForWCS
  10. {
  11. public ResultForWCS()
  12. { }
  13. [DataMember]
  14. public bool IsSuccess { get; set; }
  15. [DataMember]
  16. public string Message { get; set; }
  17. [DataMember]
  18. public object dataList { get; set; }
  19. }
  20. }