using KGIS.Framework.OpenData.InterFace; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KGIS.Plugin.LayerProperty.Interface { public interface ILogEvent { event LogAppendEventHandler LogAppend; void AddEvent(string eventName, string description); void AddEvent(string category, string eventName, string description); } }