CVS struktur erweitert

This commit is contained in:
Husky
2019-05-31 16:23:05 +02:00
parent 64d5932bde
commit 0c7724e5b7
10 changed files with 239 additions and 3 deletions

21
CSVParser/BlueLight.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SanShared;
namespace CSVParser
{
public class BlueLight : CSVParser
{
public BlueLight(string csvFile) : base(csvFile)
{
}
public override List<UVcsvStrukture> ReadCSVStrukture()
{
return null;
}
}
}