diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-10-03 15:40:25 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-10-03 15:40:25 +0300 |
| commit | da69184480df7e69c353199c4feb765f4cce6d86 (patch) | |
| tree | fa12be01675a6b921f83cdb7eceed1d643ca96a6 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/DataFileModel.cs | |
| parent | 34cb4b4ffeebb27c579c58a81320fb974f366aed (diff) | |
| parent | acbe283b6f2a2cad3ffab65be9a1892a1290769a (diff) | |
| download | Tango-da69184480df7e69c353199c4feb765f4cce6d86.tar.gz Tango-da69184480df7e69c353199c4feb765f4cce6d86.zip | |
GBD Merge !
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; } + } +} |
