aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2019-09-08 17:08:56 +0300
committerAvi Levkovich <avi@twine-s.com>2019-09-08 17:08:56 +0300
commitf0dd7536b94c119c2b37be53a393c4c5c5139b20 (patch)
treee9b11e85a837e9423232e325976a119ce88306a2 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models
parent752bef268d6934684862639dff389afd065a5c92 (diff)
parent333a1e44ac878c6de96bc398e0fa49d3adabc4c1 (diff)
downloadTango-f0dd7536b94c119c2b37be53a393c4c5c5139b20.tar.gz
Tango-f0dd7536b94c119c2b37be53a393c4c5c5139b20.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/CctModel.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/CctModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/CctModel.cs
new file mode 100644
index 000000000..9079b8fc6
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/CctModel.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.MachineStudio.RML.Models
+{
+ public class CctModel
+ {
+ public String Guid { get; set; }
+ public String FileName { get; set; }
+ public bool IsNew { get; set; }
+ public byte[] Data { get; set; }
+ }
+}