main
 1using System;
 2
 3namespace Spec.Dox.Test.MetaData
 4{
 5    [AttributeUsage(AttributeTargets.Class)]
 6    public class ConcernAttribute : Attribute
 7    {
 8        public ConcernAttribute(Type systemUnderTest)
 9        {
10            SystemUnderTest = systemUnderTest;
11        }
12
13        public Type SystemUnderTest { get; private set; }
14    }
15}