зеркало из https://github.com/DeGsoft/maui-linux.git
13 строки
305 B
C#
13 строки
305 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Xamarin.Forms
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|||
|
public sealed class ExportRendererAttribute : HandlerAttribute
|
|||
|
{
|
|||
|
public ExportRendererAttribute(Type handler, Type target) : base(handler, target)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|