ReFuel.StbImage/NativeTypeNameAttribute.cs

13 lines
286 B
C#
Raw Normal View History

using System;
2024-06-14 17:24:38 +02:00
namespace Quik.Stb
{
[AttributeUsage(System.AttributeTargets.All, Inherited = false, AllowMultiple = true)]
internal sealed class NativeTypeNameAttribute : System.Attribute
{
public NativeTypeNameAttribute(string typename)
{
}
}
}