Introduce ElmSharp project
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / CheckStateChangedEventArgs.cs
1 using System;
2
3 namespace ElmSharp
4 {
5     public class CheckStateChangedEventArgs : EventArgs
6     {
7         public bool OldState { get; private set; }
8
9         public bool NewState { get; private set; }
10
11         public CheckStateChangedEventArgs(bool oldState, bool newState)
12         {
13             this.OldState = oldState;
14             this.NewState = newState;
15         }
16     }
17 }