///////////////////////////////////////////////////////////////////////////////// // Paint.NET // // Copyright (C) Rick Brewster, Tom Jackson, and past contributors. // // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. // // See src/Resources/Files/License.txt for full licensing and attribution // // details. // // . // ///////////////////////////////////////////////////////////////////////////////// using System; namespace PaintDotNet.Effects { /// /// Allows you to categorize an Effect to place it in the appropriate menu /// within Paint.NET. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] public class EffectCategoryAttribute : Attribute { private EffectCategory category; public EffectCategory Category { get { return category; } } public EffectCategoryAttribute(EffectCategory category) { this.category = category; } } }