SharpLibEar/EventMonitorPowerOff.cs
author StephaneLenclud
Thu, 28 Jul 2016 19:32:40 +0200
changeset 225 6ccaa430aa23
parent 210 83dd86e73448
child 231 4c706feaf706
permissions -rw-r--r--
Adding support for Display Messages.
     1 //
     2 
     3 
     4 using System.Runtime.Serialization;
     5 
     6 namespace SharpLib.Ear
     7 {
     8     [DataContract]
     9     public class EventMonitorPowerOff : Event
    10     {
    11         public EventMonitorPowerOff()
    12         {
    13             Name = "Monitor Power Off";
    14             Description = "Windows is powering off your monitor.";
    15         }
    16     }
    17 
    18 }