StephaneLenclud@210: // StephaneLenclud@210: StephaneLenclud@210: StephaneLenclud@210: using System.Runtime.Serialization; StephaneLenclud@210: StephaneLenclud@210: namespace SharpLib.Ear StephaneLenclud@210: { StephaneLenclud@210: [DataContract] StephaneLenclud@210: public class EventMonitorPowerOn : Event StephaneLenclud@210: { StephaneLenclud@210: public EventMonitorPowerOn() StephaneLenclud@210: { StephaneLenclud@210: Name = "Monitor Power On"; StephaneLenclud@211: Description = "Windows is powering on your monitor."; StephaneLenclud@210: } StephaneLenclud@210: StephaneLenclud@210: } StephaneLenclud@210: StephaneLenclud@210: }