author | StephaneLenclud |
Mon, 25 Jul 2016 17:48:12 +0200 | |
changeset 218 | c466f72a834f |
child 219 | 99c407831232 |
permissions | -rw-r--r-- |
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
7 namespace SharpLib.Ear
8 {
10 // Multiuse attribute.
11 [System.AttributeUsage(System.AttributeTargets.Class)]
12 public class AttributeAction : System.Attribute
13 {
14 public string Id;
15 public string Name;
16 public string Description;
17 }
19 }