Add widget component type (#2609)
authorChangGyu Choi <uppletaste@gmail.com>
Mon, 8 Feb 2021 09:03:49 +0000 (18:03 +0900)
committerGitHub <noreply@github.com>
Mon, 8 Feb 2021 09:03:49 +0000 (18:03 +0900)
Co-authored-by: hjhun <36876573+hjhun@users.noreply.github.com>
src/Tizen.Applications.ComponentBased.ComponentManager/Tizen.Applications/ComponentType.cs

index 38a13f8..ee01486 100755 (executable)
@@ -30,6 +30,12 @@ namespace Tizen.Applications.ComponentBased
         /// <summary>
         /// Service component
         /// </summary>
-        Service = 1
+        Service = 1,
+
+        /// <summary>
+        /// Widget component
+        /// </summary>
+        /// <since_tizen> 9 </since_tizen>
+        Widget = 2
     }
 }