e9a2a72aa7f39d818dab13d5129f55b757f5d00e
[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 }