1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 
7 namespace LLVM.ClangTidy
8 {
9     public class ClangTidyCheckAttribute : Attribute
10     {
11         private string CheckName_;
12         public ClangTidyCheckAttribute(string CheckName)
13         {
14             this.CheckName_ = CheckName;
15         }
16 
17         public string CheckName
18         {
19             get { return CheckName_; }
20         }
21     }
22 }
23