Files
PhotoRenamer/PhotoRenamer.Base/Types/MediaFile.cs
2020-01-11 21:15:49 +01:00

17 lines
325 B
C#

using System;
namespace PhotoRenamer.Base.Types
{
public class MediaFile
{
public MediaFile(string path, DateTime creationDate)
{
Path = path;
CreationDate = creationDate;
}
public string Path { get; }
public DateTime CreationDate { get; }
}
}