using System; namespace ET.PeopleBehave { [AttributeUsage(AttributeTargets.Class)] public class BehaveAttribute: BaseAttribute { public int BehaveID { get; } public BehaveAttribute(int id) { this.BehaveID = id; } } }