using System; using System.Collections.Generic; namespace Encompass { [AttributeUsage(AttributeTargets.Class)] public class QueryWithout : Attribute { public readonly HashSet QueryWithoutTypes = new HashSet(); public QueryWithout(params Type[] queryWithoutTypes) { foreach (var type in queryWithoutTypes) { QueryWithoutTypes.Add(type); } } } }