XmdsExtensionZoneAttribute.cs 583 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace XmdsCommonServer.Plugin.Scene
  6. {
  7. /// <summary>
  8. /// 标记场景子类对应的场景ID
  9. /// </summary>
  10. [AttributeUsage(AttributeTargets.Class)]
  11. public class XmdsExtensionZoneAttribute : System.Attribute
  12. {
  13. private readonly int tempateID;
  14. public XmdsExtensionZoneAttribute(int tempateID)
  15. {
  16. this.tempateID = tempateID;
  17. }
  18. public int TemplateID
  19. {
  20. get { return tempateID; }
  21. }
  22. }
  23. }