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