aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Storage/StorageFile.cs18
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(); }
+ }
+ }
+}