Add Globals and XY
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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; }
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user