using System.Collections.Generic; namespace MCPForUnity.Editor.Services { public class ToolSyncResult { public int CopiedCount { get; set; } public int SkippedCount { get; set; } public int ErrorCount { get; set; } public List Messages { get; set; } = new List(); public bool Success => ErrorCount == 0; } public interface IToolSyncService { ToolSyncResult SyncProjectTools(string destToolsDir); } }