blob: 2a1d3323ef4ffec2127e0357666bf208c6004def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.DispenserAnalyzer.UI.Analysis
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface)]
public class AnalyzerAttribute : Attribute
{
public string Name { get; set; }
public AnalyzerAttribute(string name)
{
Name = name;
}
}
}
|