FTPuploadModel.cs 313 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace PMS.BusinessModels.ComplaintManage
  6. {
  7. public class FTPuploadModel
  8. {
  9. public string code { set; get; }
  10. public string errormessage { set; get; }
  11. public string data { set; get; }
  12. }
  13. }