Files
view-by-distance-mklink-con…/Shared/Models/Properties/IRelativeLocation.cs
2022-12-16 11:26:00 -07:00

12 lines
292 B
C#

namespace View_by_Distance.Shared.Models.Properties;
public interface IRelativeLocation
{
public double Confidence { init; get; }
public string Height { init; get; }
public string Left { init; get; }
public string Top { init; get; }
public string Width { init; get; }
}