LubanConfigAttribute.cs 293 B

123456789101112131415
  1. using System;
  2. namespace ET
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. public class ConfigAttribute : BaseAttribute
  6. {
  7. public int ConfigType { get; }
  8. public ConfigAttribute(int configType = 0)
  9. {
  10. this.ConfigType = configType;
  11. }
  12. }
  13. }