cleanup: Remove duplicate and unused MapData classes

- AGVMapEditor/Models/MapData.cs 제거 (미사용)
- SubProject/AGVControl/Models/MapData.cs 제거 (레거시 코드)
- AGVMapEditor.csproj에서 MapData.cs 항목 제거
- AGVMapEditor/Forms/MainForm.cs에서 불필요한 using 제거

모든 맵 데이터 관리는 AGVNavigationCore.Models.MapLoader를 사용

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
backuppc
2025-10-23 09:51:08 +09:00
parent 2c7751d2b7
commit 03760837ab
4 changed files with 0 additions and 31 deletions

View File

@@ -50,7 +50,6 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Models\EditorSettings.cs" /> <Compile Include="Models\EditorSettings.cs" />
<Compile Include="Models\MapData.cs" />
<Compile Include="Models\MapImage.cs" /> <Compile Include="Models\MapImage.cs" />
<Compile Include="Models\MapLabel.cs" /> <Compile Include="Models\MapLabel.cs" />
<Compile Include="Models\NodePropertyWrapper.cs" /> <Compile Include="Models\NodePropertyWrapper.cs" />

View File

@@ -4,7 +4,6 @@ using System.Drawing;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Windows.Forms; using System.Windows.Forms;
using AGVMapEditor.Models;
using AGVNavigationCore.Controls; using AGVNavigationCore.Controls;
using AGVNavigationCore.Models; using AGVNavigationCore.Models;
using Newtonsoft.Json; using Newtonsoft.Json;

View File

@@ -1,15 +0,0 @@
using System;
using System.Collections.Generic;
using AGVNavigationCore.Models;
namespace AGVMapEditor.Models
{
public class MapData
{
public List<MapNode> Nodes { get; set; } = new List<MapNode>();
public DateTime CreatedDate { get; set; }
public string Version { get; set; } = "1.0";
}
}

View File

@@ -1,14 +0,0 @@
using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVControl.Models
{
public class MapData
{
public List<RFIDPoint> RFIDPoints { get; set; } = new List<RFIDPoint>();
public List<MagnetLine> MagnetLines { get; set; } = new List<MagnetLine>();
public List<MapText> MapTexts { get; set; } = new List<MapText>();
public List<CustomLine> CustomLines { get; set; } = new List<CustomLine>();
public List<RFIDLine> RFIDLines { get; set; } = new List<RFIDLine>();
}
}