086b061117991f35aa2dbe1759a2eee7ff13270f
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / DependencyAttribute.cs
1 using System;
2
3 namespace Tizen.NUI.Binding
4 {
5     [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
6     internal class DependencyAttribute : Attribute
7     {
8         public DependencyAttribute(Type implementorType)
9         {
10             Implementor = implementorType;
11         }
12
13         internal Type Implementor { get; private set; }
14     }
15 }