Files
InfectedRose/InfectedRose.Interface/ModTypeAttribute.cs
2023-07-15 10:51:25 +02:00

14 lines
248 B
C#

using System;
namespace InfectedRose.Interface;
[AttributeUsage(AttributeTargets.Class)]
public class ModTypeAttribute : Attribute
{
public string Type { get; set; }
public ModTypeAttribute(string type)
{
Type = type;
}
}