BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/ElementPosition.cs
2024-04-15 23:48:22 -05:00

9 lines
173 B
C#

namespace BotSharp.Abstraction.Browsing.Models;
public class ElementPosition
{
public float X { get; set; } = default!;
public float Y { get; set; } = default!;
}