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 EventMonitorPowerOff : Event StephaneLenclud@210: { StephaneLenclud@210: public EventMonitorPowerOff() StephaneLenclud@210: { StephaneLenclud@210: Name = "Monitor Power Off"; StephaneLenclud@211: Description = "Windows is powering off your monitor."; StephaneLenclud@210: } StephaneLenclud@210: } StephaneLenclud@210: StephaneLenclud@210: }