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

@@ -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";
}
}