| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Core.Lights
- {
- public class LightChannelEventArgs : EventArgs
- {
- public ILightChannel Channel { get; }
- public bool IsOn { get; }
- public int Brightness { get; }
- public LightChannelEventArgs(ILightChannel channel, bool isOn, int brightness)
- {
- Channel = channel;
- IsOn = isOn;
- Brightness = brightness;
- }
- }
- }
|