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