SharpLibEar/AttributeObject.cs
author StephaneLenclud
Sun, 21 Aug 2016 19:31:08 +0200
changeset 251 f60cfcb98c9a
permissions -rw-r--r--
Published v0.12.2.0
Adding setting for Logitech user name.
Improved event tree view update following Harmony connection.
Removed unneeded editable fields from Harmony command action.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Text;
     5 using System.Threading.Tasks;
     6 
     7 namespace SharpLib.Ear
     8 {
     9 
    10     /// <summary>
    11     /// For action class to define name and description.
    12     /// </summary>
    13     [System.AttributeUsage(System.AttributeTargets.Class)]
    14     public class AttributeObject : System.Attribute
    15     {
    16         public string Id;
    17         public string Name;
    18         public string Description;
    19     }
    20 
    21 
    22 }