PorygonSharp/PorygonSharp/Attributes/PorygonEnumAttribute.cs

14 lines
245 B
C#

using System;
namespace PorygonSharp.Attributes
{
public class PorygonEnumAttribute : Attribute
{
public string Name { get; }
public PorygonEnumAttribute(string name)
{
Name = name;
}
}
}