Mike Phares 73de1070b8 SegmentB, personKey,
personKeyFormatted and Sorting
2022-09-01 01:18:08 -07:00

16 lines
513 B
C#

namespace View_by_Distance.Shared.Models.Properties;
public interface IFace
{
public DateTime DateTime { get; }
public List<FaceDistance> FaceDistances { get; }
public FaceEncoding? FaceEncoding { get; }
public Dictionary<Stateless.FacePart, FacePoint[]>? FaceParts { get; }
public List<int[]>? FaceNumbers { get; }
public Location? Location { get; }
public int? LocationIndex { get; }
public OutputResolution? OutputResolution { get; }
public string RelativePath { get; }
}