[ElmSharp] Mark ElmSharp API as API Level: preview
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / CheckStateChangedEventArgs.cs
index 461798f..fc8bb4b 100755 (executable)
@@ -23,16 +23,19 @@ namespace ElmSharp
     /// The CheckStateChangedEventArgs is EventArgs to record Check's state.
     /// Include old state and new state.
     /// </summary>
+    /// <since_tizen> preview </since_tizen>
     public class CheckStateChangedEventArgs : EventArgs
     {
         /// <summary>
         /// Gets the OldState property.The return type is bool.
         /// </summary>
+        /// <since_tizen> preview </since_tizen>
         public bool OldState { get; private set; }
 
         /// <summary>
         /// Gets the NewState property.The return type is bool.
         /// </summary>
+        /// <since_tizen> preview </since_tizen>
         public bool NewState { get; private set; }
 
         /// <summary>
@@ -40,6 +43,7 @@ namespace ElmSharp
         /// </summary>
         /// <param name="oldState">Old state of Check which to use this CheckStateChangedEventArgs.</param>
         /// <param name="newState">New state of Check which to use this CheckStateChangedEventArgs.</param>
+        /// <since_tizen> preview </since_tizen>
         public CheckStateChangedEventArgs(bool oldState, bool newState)
         {
             this.OldState = oldState;