frmFileImportItemModel.cs 435 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Software.MainBusiness.MultipleFileImport
  6. {
  7. public class frmFileImportItemModel
  8. {
  9. public string local_Path { get; set; }
  10. public float user_Time { get; set; }
  11. public string upload_Msg { get; set; }
  12. public bool success { get; set; }
  13. public int code { get; set; }
  14. }
  15. }