File: Mapping\ElementSide.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.Mapping { /// <summary> /// Enum representing the side of an element in the mappers. /// </summary> public enum ElementSide : byte { Left = 0, Right = 1 } } |