SharpLibEar/AttributeObject.cs
changeset 231 4c706feaf706
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/SharpLibEar/AttributeObject.cs	Fri Aug 12 20:25:05 2016 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +using System;
     1.5 +using System.Collections.Generic;
     1.6 +using System.Linq;
     1.7 +using System.Text;
     1.8 +using System.Threading.Tasks;
     1.9 +
    1.10 +namespace SharpLib.Ear
    1.11 +{
    1.12 +
    1.13 +    /// <summary>
    1.14 +    /// For action class to define name and description.
    1.15 +    /// </summary>
    1.16 +    [System.AttributeUsage(System.AttributeTargets.Class)]
    1.17 +    public class AttributeObject : System.Attribute
    1.18 +    {
    1.19 +        public string Id;
    1.20 +        public string Name;
    1.21 +        public string Description;
    1.22 +    }
    1.23 +
    1.24 +
    1.25 +}