[NUI]Add xaml support for nui and nui xaml test sample (#230)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Xaml / XamlFilePathAttribute.cs
1 using System;
2 using System.Runtime.CompilerServices;
3
4 namespace Tizen.NUI.Xaml
5 {
6         [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
7         internal sealed class XamlFilePathAttribute : Attribute
8         {
9                 public XamlFilePathAttribute([CallerFilePath] string filePath = "")
10                 {
11                 }
12         }
13 }