using System; namespace HeuristicLab.Problems.ProgramSynthesis { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] public class PushStackAttribute : Attribute { public readonly StackTypes StackType; public PushStackAttribute(StackTypes stackType) { StackType = stackType; } } }