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

12 lines
242 B
C#

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