maui-linux/Xamarin.Forms.Platform.GTK/ExportCellAttribute.cs

13 строки
280 B
C#

using System;
namespace Xamarin.Forms.Platform.GTK
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
public sealed class ExportCellAttribute : HandlerAttribute
{
public ExportCellAttribute(Type handler, Type target) : base(handler, target)
{
}
}
}