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; } } }