diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-27 19:04:50 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-27 19:04:50 +0200 |
| commit | 687910bc052e1430c8132a5eefe63e20ba6937e0 (patch) | |
| tree | 0ec042a8a5cad0615a82d1e10862a904efe79762 /Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs | |
| parent | f1a77b05c2e56cd073180803947aa991a09f9b40 (diff) | |
| download | Tango-687910bc052e1430c8132a5eefe63e20ba6937e0.tar.gz Tango-687910bc052e1430c8132a5eefe63e20ba6937e0.zip | |
Implemented PMR Generator for hardware objects !
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs b/Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs new file mode 100644 index 000000000..6d771099a --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + public class ProtoMessageFile : Class + { + public String Package { get; set; } + public List<String> Imports { get; set; } + + public ProtoMessageFile() + { + Imports = new List<string>(); + } + } +} |
