rename
This commit is contained in:
parent
bef61f841d
commit
c3de5fdb63
107 changed files with 0 additions and 0 deletions
19
src/Automata.Core/StashCalibration.cs
Normal file
19
src/Automata.Core/StashCalibration.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
namespace Poe2Trade.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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue