A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
525 B

using System;
namespace Avalonia.Metadata
{
/// <summary>
/// This interface is not intended to be implemented outside of the core Avalonia framework as
/// its API may change without warning.
/// </summary>
/// <remarks>
/// This interface is stable for consumption by a client, but should not be implemented as members
/// may be added to its API.
/// </remarks>
[AttributeUsage(AttributeTargets.Interface)]
public class NotClientImplementableAttribute : Attribute
{
}
}