Add ScriptUI to support XAML file (#320)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / XamlBinding / IValueConverter.cs
1 using System;
2 using System.Globalization;
3 using System.ComponentModel;
4
5 namespace Tizen.NUI.Binding
6 {
7     /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
8     [EditorBrowsable(EditorBrowsableState.Never)]
9     public interface IValueConverter
10     {
11         object Convert(object value, Type targetType, object parameter, CultureInfo culture);
12         object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture);
13     }
14 }