timelapse/Timelapse/Data/RecentFile.cs

10 lines
238 B
C#
Raw Normal View History

2021-12-28 07:25:39 +00:00
using System;
using System.IO;
namespace Timelapse.Data
{
public class RecentFile
{
public string Filename {get {return Path.GetFileNameWithoutExtension(Fullpath);}} public string Fullpath {get;set;}
}
}