982479d79d96cc07a94ff2fcff260f9e0bc48201
[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 }