ModernUO/Projects/UOContent/Engines/Craft/Core/CraftItemIDAttribute.cs
2020-05-09 12:55:56 -07:00

12 lines
No EOL
255 B
C#

using System;
namespace Server.Engines.Craft
{
[AttributeUsage(AttributeTargets.Class)]
public class CraftItemIDAttribute : Attribute
{
public CraftItemIDAttribute(int itemID) => ItemID = itemID;
public int ItemID { get; }
}
}