maui-linux/Xamarin.Forms.Core/RuntimeNamePropertyAttribut...

15 строки
268 B
C#

using System;
namespace Xamarin.Forms.Xaml
{
[AttributeUsage(AttributeTargets.Class)]
internal sealed class RuntimeNamePropertyAttribute : Attribute
{
public RuntimeNamePropertyAttribute(string name)
{
Name = name;
}
public string Name { get; }
}
}