diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-10-03 17:08:11 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-10-03 17:08:11 +0300 |
| commit | 6d54b8da0fefd5dbb2f40f3ccc268497dd0bbe09 (patch) | |
| tree | 963a6ee7ea16da4bc934faf40953e990eabc2222 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.cs | |
| parent | 70c1f3243b51be8ba70f806453ea2ee0881d3084 (diff) | |
| parent | 6577b5da46b2f6aaa5724f43334fa7eedd99b05d (diff) | |
| download | Tango-6d54b8da0fefd5dbb2f40f3ccc268497dd0bbe09.tar.gz Tango-6d54b8da0fefd5dbb2f40f3ccc268497dd0bbe09.zip | |
Merge branch 'software' of https://twinetfs.visualstudio.com/Tango/_git/Tango into software
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; } + } +} |
