poe2-bot/src/Nexus.Core/StashCalibration.cs
2026-03-06 14:37:05 -05:00

19 lines
523 B
C#

namespace Nexus.Core;
public class StashTabInfo
{
public string Name { get; set; } = "";
public int Index { get; set; }
public int ClickX { get; set; }
public int ClickY { get; set; }
public bool IsFolder { get; set; }
public int GridCols { get; set; } = 12;
public bool Enabled { get; set; } = true;
public List<StashTabInfo> SubTabs { get; set; } = [];
}
public class StashCalibration
{
public List<StashTabInfo> Tabs { get; set; } = [];
public long CalibratedAt { get; set; }
}