MessageHandlerAttribute.cs 327 B

12345678910111213141516
  1. namespace KYFramework.Network
  2. {
  3. public class MessageHandlerAttribute : BaseAttribute
  4. {
  5. //public string File { get; }
  6. public MessageHandlerAttribute()
  7. {
  8. }
  9. // public MessageHandlerAttribute(string appType)
  10. // {
  11. // this.File = appType;
  12. // }
  13. }
  14. }