File: DifferenceType.cs | Web Access |
Project: ..\..\..\src\Compatibility\ApiCompat\Microsoft.DotNet.ApiCompatibility\Microsoft.DotNet.ApiCompatibility.csproj (Microsoft.DotNet.ApiCompatibility) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.DotNet.ApiCompatibility { /// <summary> /// Enum representing the different type of differences available. /// </summary> public enum DifferenceType { Changed, Added, Removed } } |