dolittle/DotNET.SDK

View on GitHub
Source/Analyzers/DiagnosticCategories.cs

Summary

Maintainability
A
0 mins
Test Coverage
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace Dolittle.SDK.Analyzers;

/// <summary>
/// Supported diagnostic categoriges
/// </summary>
public static class DiagnosticCategories
{
    /// <summary>
    /// Analyzer specific to the Dolittle SDK domain types
    /// </summary>
    public const string Sdk = "Dolittle.SDK";
}