diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-28 18:10:54 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-28 18:10:54 +0200 |
| commit | 539aecd793ee0ce55833eef98c3049dd0bf8127d (patch) | |
| tree | f8ad9f837805db9ffcfc16d7b3b100563f0f67a4 /Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs | |
| parent | e6fbe359a674ab65c1fc728ac4a826b3c0716932 (diff) | |
| download | Tango-539aecd793ee0ce55833eef98c3049dd0bf8127d.tar.gz Tango-539aecd793ee0ce55833eef98c3049dd0bf8127d.zip | |
Started working on Embedded Storage and machine studio Storage module.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs b/Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs new file mode 100644 index 000000000..e2e5fb9df --- /dev/null +++ b/Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.Integration.Storage +{ + public class StorageFile : StorageItem + { + private int _length; + public int Length + { + get { return _length; } + set { _length = value; RaisePropertyChangedAuto(); } + } + } +} |
