using System; using System.Collections.Generic; using System.Text; namespace PornocopiaVisionMetadataExtractor.Data { public class DetectedFace { public Int32 Top { get; set; } public Int32 Bottom { get; set; } public Int32 Left { get; set; } public Int32 Right { get; set; } public Int32 Size { get; set; } public Decimal SizePercentage { get; set; } } }