APIResult.cs 364 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace WCS.WMSWorkflow.APIModel
  5. {
  6. public class APIResult
  7. {
  8. public bool ResType { get; set; }
  9. public string ResMessage { get; set; }
  10. public string Memo1 { get; set; }
  11. public string Memo2 { get; set; }
  12. public string Memo3 { get; set; }
  13. }
  14. }