// Author: Gockner, Simon // Created: 2020-03-06 // Copyright(c) 2020 SimonG. All Rights Reserved. using System; namespace GBase.Api { /// /// Notify the GBase that an entry has changed /// public interface INotifyGBaseEntryChanged { /// /// Notify the GBase that an entry has changed /// static event EventHandler GBaseEntryChanged; } }