12 lines
368 B
C#
12 lines
368 B
C#
namespace View_by_Distance.Shared.Models.Properties;
|
|
|
|
public interface INavigate
|
|
{
|
|
|
|
public List<string[]> Levels { get; }
|
|
public string SourceDirectory { get; }
|
|
public string DirectoryRelativePath { get; }
|
|
public Models.FaceFileSystem[] FaceFileSystemCollection { get; }
|
|
public Models.DirectoryFileSystem[] DirectoryFileSystemCollection { get; }
|
|
|
|
} |