DiagnosticCategories.cs 272 B

123456789
  1. namespace ET.Analyzer
  2. {
  3. public static class DiagnosticCategories
  4. {
  5. public const string Hotfix = "ETHotfixProjectAnalyzers";
  6. public const string Model = "ETModelProjectAnalyzers";
  7. public const string All = "ETAllProjectAnalyzers";
  8. }
  9. }