namespace View_by_Distance.Shared.Models.Properties;

public interface IIndex
{

    public DateTime? DateTime { get; }
    public int? Index { get; }
    public List<string> RelativePaths { get; }

}