зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
312 B
C#
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; }
|
|
}
|
|
} |