using System;
namespace Artemis.Core;
///
/// Represents a custom view model for a
///
public interface ICustomNodeViewModel
{
///
/// Gets the node the view models belongs to
///
public INode Node { get; }
///
/// Occurs whenever the node was modified by the view model
///
event EventHandler NodeModified;
}