RobotNet/RobotNet.WebApp/Scripts/Models/HierachyItemModel.cs
2025-10-15 15:15:53 +07:00

13 lines
311 B
C#

namespace RobotNet.WebApp.Scripts.Models;
public interface IHierachyItemModel
{
string Name { get; }
bool IsModified { get; }
int WarningCount { get; }
int ErrorCount { get; }
event Action? OnModified;
event Action? OnNameChanged;
event Action<int, int>? OnDiagnosticsChanged;
}