[NUI] Adjust directory (#903)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Xaml / XamlFilePathAttribute.cs
1 using System;
2 using System.ComponentModel;
3 using System.Runtime.CompilerServices;
4
5 namespace Tizen.NUI.Xaml
6 {
7     /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
8     [EditorBrowsable(EditorBrowsableState.Never)]
9     [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
10     public sealed class XamlFilePathAttribute : Attribute
11     {
12         /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
13         [EditorBrowsable(EditorBrowsableState.Never)]
14         public XamlFilePathAttribute([CallerFilePath] string filePath = "")
15         {
16         }
17     }
18 }