BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/ElementPosition.cs

9 lines
173 B
C#
Raw Normal View History

2024-04-16 04:48:22 +00:00
namespace BotSharp.Abstraction.Browsing.Models;
public class ElementPosition
{
public float X { get; set; } = default!;
public float Y { get; set; } = default!;
}