Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace RobotNet10.ScriptEditor.Models;
|
||||
|
||||
internal interface IHierarchyItem : IDisposable
|
||||
{
|
||||
string Name { get; }
|
||||
bool IsModified { get; }
|
||||
int WarningCount { get; }
|
||||
int ErrorCount { get; }
|
||||
|
||||
event Action? Modified;
|
||||
event Action? NameChanged;
|
||||
event Action<int, int>? DiagnosticsChanged;
|
||||
}
|
||||
Reference in New Issue
Block a user