Files
Disco/Disco.Services/Plugins/PluginFeatureCategoryAttribute.cs
T
2013-02-28 17:15:46 +11:00

15 lines
364 B
C#

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