[NUI] remove "_" and refactoring naming to pascal case.
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Xaml / TypeConversionAttribute.cs
1 using System;
2 using System.ComponentModel;
3
4 namespace Tizen.NUI.Xaml
5 {
6     /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
7     [EditorBrowsable(EditorBrowsableState.Never)]
8     [System.AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
9     public sealed class TypeConversionAttribute : Attribute
10     {
11         /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
12         [EditorBrowsable(EditorBrowsableState.Never)]
13         public Type TargetType { get; private set; }
14
15         /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
16         [EditorBrowsable(EditorBrowsableState.Never)]
17         public TypeConversionAttribute(Type targetType)
18         {
19             TargetType = targetType;
20         }
21     }
22 }