diff options
| author | Avi Levkovich <avi@twine-s.com> | 2018-05-09 11:44:32 +0300 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2018-05-09 11:44:32 +0300 |
| commit | 67255998056910f53640e11e634cfdbbd7f6880c (patch) | |
| tree | e8e1a7a7fb653a69cf3c2150367308a99a4d5c13 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioModuleAttribute.cs | |
| parent | d84b6c4fff9cbf40263140a522fca3ae6bdfd57c (diff) | |
| parent | 915ee5e76204c895c71ae45447b47f24dfde44a8 (diff) | |
| download | Tango-67255998056910f53640e11e634cfdbbd7f6880c.tar.gz Tango-67255998056910f53640e11e634cfdbbd7f6880c.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioModuleAttribute.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioModuleAttribute.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioModuleAttribute.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioModuleAttribute.cs new file mode 100644 index 000000000..b9212a9e3 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioModuleAttribute.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.MachineStudio.Common +{ + [AttributeUsage(AttributeTargets.Class)] + public class StudioModuleAttribute : Attribute + { + public int Index { get; set; } + + public StudioModuleAttribute(int index) + { + Index = index; + } + } +} |
