80b8fe5cd48454afad55654693aa30aad4faa414
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Xaml / RuntimeNamePropertyAttribute.cs
1 using System;
2
3 namespace Tizen.NUI.Xaml
4 {
5     [AttributeUsage(AttributeTargets.Class)]
6     internal sealed class RuntimeNamePropertyAttribute : Attribute
7     {
8         public RuntimeNamePropertyAttribute(string name)
9         {
10             Name = name;
11         }
12
13         public string Name { get; }
14     }
15 }