EventAttribute.cs 178 B

12345678910
  1. using System;
  2. namespace KYFramework
  3. {
  4. [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
  5. public class EventAttribute : BaseAttribute
  6. {
  7. }
  8. }