namespace View_by_Distance.Shared.Models.Properties; public interface ILocation { public int Bottom { get; } public double Confidence { get; } public int Left { get; } public int? NormalizedPixelPercentage { get; } public int Right { get; } public int Top { get; } }