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.

29 lines
889 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace OT_Web.Ap_Code
  6. {
  7. public class FileInfo
  8. {
  9. public FileInfo(string strFileName, string strFileImgPath, string strLastWriteTime)
  10. {
  11. FileName = strFileName;
  12. FileImgPath = strFileImgPath;
  13. LastWriteTime = strLastWriteTime;
  14. }
  15. public FileInfo(string strFileName, string strFileImgPath, string strFileHtmlPath, string strLastWriteTime)
  16. {
  17. FileName = strFileName;
  18. FileImgPath = strFileImgPath;
  19. FileHtmlPath = strFileHtmlPath;
  20. LastWriteTime = strLastWriteTime;
  21. }
  22. public string FileName { get; set; }
  23. public string LastWriteTime { get; set; }
  24. public string FileHtmlPath { get; set; }
  25. public string FileImgPath { get; set; }
  26. }
  27. }