using Core.Common.Gui.PropertyBag;
namespace Ringtoets.Common.Forms.PropertyClasses
{
///
/// Interface defining the operations of handling a change of .
///
public interface IPropertyChangeHandler
{
///
/// Defines the action that is executed after a property of
/// has been changed.
///
void PropertyChanged();
}
}