2022-05-08 12:28:50 -07:00

30 lines
1.0 KiB
C#

namespace View_by_Distance.Shared.Models.Properties;
public interface IFaceFileSystem // : IFaceFileSystem
{
// protected new string ClassName { get; }
public string Confidence { get; }
// protected new string DataDisplayFileName { get; }
// protected new string DataFullFileName { get; }
// protected new string Display { get; }
public int? FaceBottom { get; }
public string FaceFullFileName { get; }
public int? FaceHeight { get; }
public int? FaceLeft { get; }
public string FaceRelativePath { get; }
public int? FaceRight { get; }
public int? FaceTop { get; }
public int? FaceWidth { get; }
public int ImageHeight { get; }
public int ImageWidth { get; }
// protected new DateTime LastModified { get; }
public string LocationDisplayIndex { get; }
public int? LocationIndex { get; }
public bool? Populated { get; }
public string RelativePath { get; }
public string SourceFullFileName { get; }
public string SourceRelativePath { get; }
public long? SourceSize { get; }
}