timelapse/Timelapse/Data/RecentFile.cs

10 lines
238 B
C#

using System;
using System.IO;
namespace Timelapse.Data
{
public class RecentFile
{
public string Filename {get {return Path.GetFileNameWithoutExtension(Fullpath);}} public string Fullpath {get;set;}
}
}