Files
Disco/Disco.Services/_Plugins/PluginCategoryAttribute.cs
T
2013-02-01 12:35:28 +11:00

14 lines
339 B
C#

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