Add Globals and XY

This commit is contained in:
CWX
2025-01-06 20:17:19 +00:00
parent 81cbe8bade
commit fda92881d9
2 changed files with 4873 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+12
View File
@@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace Core.Models.Eft.Common;
public class XY
{
[JsonPropertyName("x")]
public double X { get; set; }
[JsonPropertyName("y")]
public double Y { get; set; }
}