12 lines
292 B
C#
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; }
|
|
|
|
} |