This commit is contained in:
2022-05-08 12:28:50 -07:00
commit 4a3e24236f
313 changed files with 22395 additions and 0 deletions

View File

@ -0,0 +1,30 @@
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; }
}