diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-21 14:30:01 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-21 14:30:01 +0200 |
| commit | 36dcf50eec20835ab1955932e89f9c6ffc68acde (patch) | |
| tree | 3ca1331b626f04c8f19af24b65b7459b5f0660cb /Software/Visual_Studio/Tango.Explorer/ExplorerItem.cs | |
| parent | 5f321b419501b2c836e8b03400fff2934be5f135 (diff) | |
| download | Tango-36dcf50eec20835ab1955932e89f9c6ffc68acde.tar.gz Tango-36dcf50eec20835ab1955932e89f9c6ffc68acde.zip | |
Working on Touch FileExplorer !
Diffstat (limited to 'Software/Visual_Studio/Tango.Explorer/ExplorerItem.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Explorer/ExplorerItem.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Explorer/ExplorerItem.cs b/Software/Visual_Studio/Tango.Explorer/ExplorerItem.cs new file mode 100644 index 000000000..b604c71b5 --- /dev/null +++ b/Software/Visual_Studio/Tango.Explorer/ExplorerItem.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Media.Imaging; + +namespace Tango.Explorer +{ + public abstract class ExplorerItem + { + public String Name { get; set; } + public String Description { get; set; } + public String Path { get; set; } + public BitmapSource Icon { get; set; } + } +} |
