author | Stephane Lenclud |
Sun, 31 Jul 2016 12:03:52 +0200 | |
changeset 230 | 8c5cf2228e9a |
parent 210 | 83dd86e73448 |
child 231 | 4c706feaf706 |
permissions | -rw-r--r-- |
StephaneLenclud@210 | 1 |
// |
StephaneLenclud@210 | 2 |
|
StephaneLenclud@210 | 3 |
|
StephaneLenclud@210 | 4 |
using System.Runtime.Serialization; |
StephaneLenclud@210 | 5 |
|
StephaneLenclud@210 | 6 |
namespace SharpLib.Ear |
StephaneLenclud@210 | 7 |
{ |
StephaneLenclud@210 | 8 |
[DataContract] |
StephaneLenclud@210 | 9 |
public class EventMonitorPowerOn : Event |
StephaneLenclud@210 | 10 |
{ |
StephaneLenclud@210 | 11 |
public EventMonitorPowerOn() |
StephaneLenclud@210 | 12 |
{ |
StephaneLenclud@210 | 13 |
Name = "Monitor Power On"; |
StephaneLenclud@211 | 14 |
Description = "Windows is powering on your monitor."; |
StephaneLenclud@210 | 15 |
} |
StephaneLenclud@210 | 16 |
|
StephaneLenclud@210 | 17 |
} |
StephaneLenclud@210 | 18 |
|
StephaneLenclud@210 | 19 |
} |