PorygonSharp/PorygonSharp/Attributes/PorygonUserdataAttribute.cs

13 lines
276 B
C#

using System;
namespace PorygonSharp.Attributes
{
public class PorygonUserdataAttribute : Attribute
{
public string Identifier { get; }
public PorygonUserdataAttribute(string identifier)
{
Identifier = identifier;
}
}
}