[NUI] Adjust directory (#903)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / XamlBinding / TypedBinding.cs
@@ -9,13 +9,17 @@ using Tizen.NUI.Binding;
 namespace Tizen.NUI.Binding.Internals
 {
     //FIXME: need a better name for this, and share with Binding, so we can share more unittests
-    internal abstract class TypedBindingBase : BindingBase
+    /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+    [EditorBrowsable(EditorBrowsableState.Never)]
+    public abstract class TypedBindingBase : BindingBase
     {
         IValueConverter _converter;
         object _converterParameter;
         object _source;
         string _updateSourceEventName;
 
+        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public IValueConverter Converter {
             get { return _converter; }
             set {
@@ -24,6 +28,8 @@ namespace Tizen.NUI.Binding.Internals
             }
         }
 
+        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public object ConverterParameter {
             get { return _converterParameter; }
             set {
@@ -32,6 +38,8 @@ namespace Tizen.NUI.Binding.Internals
             }
         }
 
+        /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public object Source {
             get { return _source; }
             set {