From e29b5a014cdd594279b4a5124eca9d1cfa67d77d Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 26 Aug 2020 15:28:39 +0300 Subject: Implemented dynamic csv file. Implemented insights export to csv. --- Software/Visual_Studio/Tango.CSV/DynamicCsvFileColumn.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CSV/DynamicCsvFileColumn.cs (limited to 'Software/Visual_Studio/Tango.CSV/DynamicCsvFileColumn.cs') diff --git a/Software/Visual_Studio/Tango.CSV/DynamicCsvFileColumn.cs b/Software/Visual_Studio/Tango.CSV/DynamicCsvFileColumn.cs new file mode 100644 index 000000000..c8fd850e7 --- /dev/null +++ b/Software/Visual_Studio/Tango.CSV/DynamicCsvFileColumn.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CSV +{ + public class DynamicCsvFileColumn + { + public String Name { get; set; } + } +} -- cgit v1.3.1