Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
UnconditionalSuppressMessageAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
5{
6 public string Category { get; }
7
8 public string CheckId { get; }
9
10 public string? Scope { get; set; }
11
12 public string? Target { get; set; }
13
14 public string? MessageId { get; set; }
15
16 public string? Justification { get; set; }
17
18 public UnconditionalSuppressMessageAttribute(string category, string checkId)
19 {
20 Category = category;
21 CheckId = checkId;
22 }
23}