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