Setting since_tizen 3/4 on Tizen.NET API
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.PackageManager / Tizen.Applications / PackageManagerEventArgs.cs
index ba0466f..a01a0ef 100755 (executable)
@@ -19,8 +19,9 @@ using System;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// PackageManagerEventArgs class. This class is an event arguments of the InstallProgressChanged, UninstallProgressChanged and UpdateProgressChanged events.
+    /// PackageManagerEventArgs class. This class is an event arguments of the InstallProgressChanged, UninstallProgressChanged, and UpdateProgressChanged events.
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class PackageManagerEventArgs : EventArgs
     {
         private readonly PackageType _packageType;
@@ -37,23 +38,27 @@ namespace Tizen.Applications
         }
 
         /// <summary>
-        /// Type of the package to be installed, uninstalled or updated
+        /// Type of the package to be installed, uninstalled, or updated.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public PackageType PackageType { get { return _packageType; } }
 
         /// <summary>
-        /// package ID to be installed, uninstalled or updated
+        /// Package ID to be installed, uninstalled, or updated.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public string PackageId { get { return _packageId; } }
 
         /// <summary>
-        /// Current state of the request to the package manager
+        /// Current state of the request to the package manager.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public PackageEventState State { get { return _state; } }
 
         /// <summary>
         /// Progress for the request being processed by the package manager (in percent).
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public int Progress { get { return _progress; } }
     }
 }