using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace C4IT_IAM_Engine { public class ResultToken { public string resultMessage; public int resultErrorId; public string resultFunction; public List createdGroups = new List(); public List reusedGroups = new List(); public List addedAclEntries = new List(); public List skippedAclEntries = new List(); public List ensuredTraverseGroups = new List(); public List warnings = new List(); public ResultToken(string function) { this.resultFunction = function; } } }