SharpLibEar/EventMonitorPowerOn.cs
author StephaneLenclud
Sun, 24 Jul 2016 20:46:34 +0200
changeset 215 5de8f8eaaa54
parent 210 83dd86e73448
child 231 4c706feaf706
permissions -rw-r--r--
Removing obsolete CEC options.
     1 //
     2 
     3 
     4 using System.Runtime.Serialization;
     5 
     6 namespace SharpLib.Ear
     7 {
     8     [DataContract]
     9     public class EventMonitorPowerOn : Event
    10     {
    11         public EventMonitorPowerOn()
    12         {
    13             Name = "Monitor Power On";
    14             Description = "Windows is powering on your monitor.";
    15         }
    16 
    17     }
    18 
    19 }