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