using static Vanara.PInvoke.AdvApi32; namespace Vanara.Security.AccessControl { /// Class to hold associated and pairs. public class PrivilegeAndAttributes { /// Initializes a new instance of the class. /// The privilege. /// The attribute. public PrivilegeAndAttributes(SystemPrivilege p, PrivilegeAttributes a) { Privilege = p; Attributes = a; } /// Gets the privilege. /// The privilege. public SystemPrivilege Privilege { get; } /// Gets the attributes. /// The attributes. public PrivilegeAttributes Attributes { get; } } }