using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace OT_Web.Ap_Code { public class FileInfo { public FileInfo(string strFileName, string strFileImgPath, string strLastWriteTime) { FileName = strFileName; FileImgPath = strFileImgPath; LastWriteTime = strLastWriteTime; } public FileInfo(string strFileName, string strFileImgPath, string strFileHtmlPath, string strLastWriteTime) { FileName = strFileName; FileImgPath = strFileImgPath; FileHtmlPath = strFileHtmlPath; LastWriteTime = strLastWriteTime; } public string FileName { get; set; } public string LastWriteTime { get; set; } public string FileHtmlPath { get; set; } public string FileImgPath { get; set; } } }