using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Taloyhtio.CondoUpdate.Common { public enum LogLevel { Info = 0, Warn = 1, Error = 2 } public class LogEventArgs : EventArgs { public LogLevel LogLevel { get; set; } public string Message { get; set; } } public interface ICondoUpdater { event EventHandler OnNotify; void Update(object args); } }