author | StephaneLenclud |
Sun, 24 Jul 2016 20:46:34 +0200 | |
changeset 215 | 5de8f8eaaa54 |
child 219 | 99c407831232 |
permissions | -rw-r--r-- |
StephaneLenclud@210 | 1 |
using System; |
StephaneLenclud@210 | 2 |
using System.Collections.Generic; |
StephaneLenclud@210 | 3 |
using System.Linq; |
StephaneLenclud@210 | 4 |
using System.Text; |
StephaneLenclud@210 | 5 |
using System.Threading.Tasks; |
StephaneLenclud@210 | 6 |
|
StephaneLenclud@210 | 7 |
namespace SharpLib.Ear |
StephaneLenclud@210 | 8 |
{ |
StephaneLenclud@210 | 9 |
|
StephaneLenclud@210 | 10 |
// Multiuse attribute. |
StephaneLenclud@210 | 11 |
[System.AttributeUsage(System.AttributeTargets.Class)] |
StephaneLenclud@210 | 12 |
public class AttributeAction : System.Attribute |
StephaneLenclud@210 | 13 |
{ |
StephaneLenclud@210 | 14 |
public string Id; |
StephaneLenclud@210 | 15 |
public string Name; |
StephaneLenclud@210 | 16 |
public string Description; |
StephaneLenclud@210 | 17 |
} |
StephaneLenclud@210 | 18 |
|
StephaneLenclud@210 | 19 |
} |