UIEventAttribute.cs 239 B

1234567891011121314
  1. using System;
  2. namespace ET.Client
  3. {
  4. public class UIEventAttribute: BaseAttribute
  5. {
  6. public string UIType { get; }
  7. public UIEventAttribute(string uiType)
  8. {
  9. this.UIType = uiType;
  10. }
  11. }
  12. }