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;
}
}
}