Server/Slions/Ear/EventMonitorPowerOff.cs
author StephaneLenclud
Fri, 22 Jul 2016 18:19:49 +0200
changeset 209 fef4ca058087
permissions -rw-r--r--
Prototype for event and action framework.
     1 //
     2 
     3 
     4 using System.Runtime.Serialization;
     5 
     6 namespace Slions.Ear
     7 {
     8     [DataContract]
     9     class EventMonitorPowerOff : Event
    10     {
    11         public EventMonitorPowerOff()
    12         {
    13             Name = "Monitor Power Off";
    14             Description = "";
    15         }
    16     }
    17 
    18 }