using System; namespace PepperDash.Essentials.Core { /// /// Represents a description attribute for a device. /// [AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = true)] public class DescriptionAttribute : Attribute { /// /// Represents a description attribute for a device. /// /// public DescriptionAttribute(string description) { Description = description; } /// /// Gets the description for the device. /// public string Description { get; } } }