Files
Disco/Disco.Services/Plugins/PluginFeatureCategoryAttribute.cs
T
2017-03-25 15:29:51 +11:00

11 lines
262 B
C#

using System;
namespace Disco.Services.Plugins
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class PluginFeatureCategoryAttribute : Attribute
{
public string DisplayName { get; set; }
}
}