using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SmartCoalApplication { /// /// 封装文件名和缩略图 /// internal class MostRecentFile { private string fileName; private Image thumb; public string FileName { get { return fileName; } } public Image Thumb { get { return thumb; } } public MostRecentFile(string fileName, Image thumb) { this.fileName = fileName; this.thumb = thumb; } } }