From 96fe20a20e7c107473cefeda3b06950955952bec Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Sun, 15 Mar 2020 01:55:42 +0200 Subject: Improved Console. Increased SignalR adapter connect timeout. Implemented Tango.FileSystem !!! --- .../Visual_Studio/Tango.FileSystem/IFileSystemContainer.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Software/Visual_Studio/Tango.FileSystem/IFileSystemContainer.cs (limited to 'Software/Visual_Studio/Tango.FileSystem/IFileSystemContainer.cs') diff --git a/Software/Visual_Studio/Tango.FileSystem/IFileSystemContainer.cs b/Software/Visual_Studio/Tango.FileSystem/IFileSystemContainer.cs new file mode 100644 index 000000000..a75764a14 --- /dev/null +++ b/Software/Visual_Studio/Tango.FileSystem/IFileSystemContainer.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.FileSystem +{ + public interface IFileSystemContainer + { + ObservableCollection Items { get; set; } + } +} -- cgit v1.3.1