voile/Voile.Patchouli/Reflection/VoilePluginIdAttribute.cs
2026-01-21 21:38:48 +01:00

20 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Voile.Patchouli.Reflection
{
[System.AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class VoilePluginIdAttribute : Attribute
{
public VoilePluginIdAttribute(int id)
{
Id = id;
}
public int Id { get; }
}
}