diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-09-20 13:22:26 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-09-20 13:22:26 +0300 |
| commit | a2c128c1c00ac74c9c1835a8581aa8f2c4123bde (patch) | |
| tree | 82a10267e4bc4b84063dd91b4af5e246c9260605 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.cs | |
| parent | 2678b315131494f8018e62f11468f76a5febf374 (diff) | |
| download | Tango-a2c128c1c00ac74c9c1835a8581aa8f2c4123bde.tar.gz Tango-a2c128c1c00ac74c9c1835a8581aa8f2c4123bde.zip | |
Modified all uses of RML to include GBD and LUB.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.cs new file mode 100644 index 000000000..8f8eb58d9 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.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 DataFileModel + { + public String Guid { get; set; } + public String FileName { get; set; } + public bool IsNew { get; set; } + public byte[] Data { get; set; } + } +} |
