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:
@@ -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";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user