[NUI]Add xaml support for nui and nui xaml test sample (#230)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / RenderWithAttribute.cs
1 using System;
2
3 namespace Tizen.NUI.Binding
4 {
5         [AttributeUsage(AttributeTargets.Class)]
6         internal sealed class RenderWithAttribute : Attribute
7         {
8                 public RenderWithAttribute(Type type)
9                 {
10                         Type = type;
11                 }
12
13                 public Type Type { get; }
14         }
15 }