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

15 строки
312 B
C#

using System;
namespace Xamarin.Forms
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
public sealed class DependencyAttribute : Attribute
{
public DependencyAttribute(Type implementorType)
{
Implementor = implementorType;
}
internal Type Implementor { get; private set; }
}
}