12 lines
286 B
C#
12 lines
286 B
C#
namespace View_by_Distance.Shared.Models.Properties;
|
|
|
|
public interface IIdentify
|
|
{
|
|
|
|
public int DirectoryCount { get; }
|
|
public string ParentDirectoryName { get; }
|
|
public string Person { get; }
|
|
public string PossibleYear { get; }
|
|
public string RelativePath { get; }
|
|
|
|
} |