using System; namespace ET { [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public class EntityEventAttribute: Attribute { public int ClassType; public EntityEventAttribute(int classType) { this.ClassType = classType; } } }