123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace XmdsCommonServer.Plugin.Scene
- {
- /// <summary>
- /// 标记场景子类对应的场景ID
- /// </summary>
- [AttributeUsage(AttributeTargets.Class)]
- public class XmdsExtensionZoneAttribute : System.Attribute
- {
- private readonly int tempateID;
- public XmdsExtensionZoneAttribute(int tempateID)
- {
- this.tempateID = tempateID;
- }
- public int TemplateID
- {
- get { return tempateID; }
- }
- }
- }
|