From 8315aeac77bb24c1752a7ca676d47be20ecbf9e9 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Fri, 24 Jan 2020 16:36:09 +0100 Subject: [PATCH] - add ValueChanged event --- GBase/Attributes/GBaseEntryAttribute.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GBase/Attributes/GBaseEntryAttribute.cs b/GBase/Attributes/GBaseEntryAttribute.cs index acbeb6a..7952e9f 100644 --- a/GBase/Attributes/GBaseEntryAttribute.cs +++ b/GBase/Attributes/GBaseEntryAttribute.cs @@ -13,6 +13,9 @@ namespace GBase.Attributes [AttributeUsage(AttributeTargets.Property)] public class GBaseEntryAttribute : Attribute { - + /// + /// The value of the linked property changed + /// + public event EventHandler ValueChanged; //TODO: Automatically fire this event if the value of the linked property changes and subscribe to it in the correct IGBaseEntry } } \ No newline at end of file