MosswartMassacre/Unused/Decal.Adapter/FriendlyNameAttribute.cs
2025-06-09 02:03:11 +02:00

16 lines
263 B
C#

using System;
namespace Decal.Adapter;
[AttributeUsage(AttributeTargets.Class)]
public sealed class FriendlyNameAttribute : Attribute
{
private string myName;
public string Name => myName;
public FriendlyNameAttribute(string name)
{
myName = name;
}
}