Files
view-by-distance-mklink-con…/Shared/Models/Properties/IIndex.cs
2022-05-08 12:28:50 -07:00

10 lines
200 B
C#

namespace View_by_Distance.Shared.Models.Properties;
public interface IIndex
{
public DateTime? DateTime { get; }
public int? Index { get; }
public List<string> RelativePaths { get; }
}