77faaa8ece9713d6fb82614a7d9b632661bfb029
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.XamlBuild / src / internal / XamlBinding / ContentPropertyAttribute.cs
1 //
2 // ContentPropertyAttribute.cs
3 //
4 // Author:
5 //       Stephane Delcroix <stephane@delcroix.org>
6 //
7 // Copyright (c) 2013 S. Delcroix
8 //
9
10 using System;
11
12 namespace Tizen.NUI.Binding
13 {
14     [AttributeUsage(AttributeTargets.Class)]
15     internal sealed class ContentPropertyAttribute : Attribute
16     {
17         internal static string[] ContentPropertyTypes = { "Tizen.NUI.Binding.ContentPropertyAttribute", "System.Windows.Markup.ContentPropertyAttribute" };
18
19         public ContentPropertyAttribute(string name)
20         {
21             Name = name;
22         }
23
24         public string Name { get; private set; }
25     }
26 }