Riok.Mapperly by Mapperly Contributors, Lars Tönz, Manuel Allenspach

<PackageReference Include="Riok.Mapperly" Version="3.5.1" />

 MemberVisibility

public enum MemberVisibility
Determines what member accessibility Mapperly will attempt to map.
using System; namespace Riok.Mapperly.Abstractions { [Flags] public enum MemberVisibility { AllAccessible = 31, All = 30, Accessible = 1, Public = 2, Internal = 4, Protected = 8, Private = 16 } }