123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace XmdsCommonServer.Plugin.Scene
- {
-
-
-
- [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; }
- }
- }
- }
|