maui-linux/Xamarin.Forms.Core/DependencyAttribute.cs

15 строки
305 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
using System;
namespace Xamarin.Forms
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
public class DependencyAttribute : Attribute
{
public DependencyAttribute(Type implementorType)
{
Implementor = implementorType;
}
internal Type Implementor { get; private set; }
}
}