<PackageReference Include="System.Security.AccessControl" Version="6.0.0-preview.5.21301.5" />

AceFlags

public enum AceFlags
Specifies the inheritance and auditing behavior of an access control entry (ACE).
namespace System.Security.AccessControl { [Flags] public enum AceFlags : byte { None = 0, ObjectInherit = 1, ContainerInherit = 2, NoPropagateInherit = 4, InheritOnly = 8, InheritanceFlags = 15, Inherited = 16, SuccessfulAccess = 64, FailedAccess = 128, AuditFlags = 192 } }