[NUI] Adjust directory (#903)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / XamlBinding / Internals / DynamicResource.cs
1 using System.ComponentModel;
2
3 namespace Tizen.NUI.Binding.Internals
4 {
5     /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
6     [EditorBrowsable(EditorBrowsableState.Never)]
7     public class DynamicResource
8     {
9         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
10         [EditorBrowsable(EditorBrowsableState.Never)]
11         public DynamicResource(string key)
12         {
13             Key = key;
14         }
15
16         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
17         [EditorBrowsable(EditorBrowsableState.Never)]
18         public string Key { get; private set; }
19     }
20 }