Remove dupe type, redirected type

This commit is contained in:
CWX
2025-01-14 19:27:26 +00:00
parent 770976527e
commit 2dee26a47c
2 changed files with 9 additions and 17 deletions
+8 -2
View File
@@ -109,11 +109,17 @@ public class UpdMap
public class MapMarker
{
[JsonPropertyName("Type")]
public string? Type { get; set; }
[JsonPropertyName("X")]
public int? X { get; set; }
public double? X { get; set; }
[JsonPropertyName("Y")]
public int? Y { get; set; }
public double? Y { get; set; }
[JsonPropertyName("Note")]
public string? Note { get; set; }
}
public class UpdTag
@@ -1,4 +1,5 @@
using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Tables;
namespace Core.Models.Eft.Inventory;
@@ -13,18 +14,3 @@ public class InventoryCreateMarkerRequestData : InventoryBaseActionRequestData
[JsonPropertyName("mapMarker")]
public MapMarker? MapMarker { get; set; }
}
public class MapMarker
{
[JsonPropertyName("Type")]
public string? Type { get; set; }
[JsonPropertyName("X")]
public double? X { get; set; }
[JsonPropertyName("Y")]
public double? Y { get; set; }
[JsonPropertyName("Note")]
public string? Note { get; set; }
}