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.
|
|
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; } } }
|