10 lines
203 B
C#
10 lines
203 B
C#
|
namespace CSV_Metrics_Logger;
|
||
|
|
||
|
public interface IConvertToCSV
|
||
|
{
|
||
|
public uint GetCSVColumnCount();
|
||
|
|
||
|
public IList<string> GetCSVHeaders();
|
||
|
|
||
|
public IList<string> ConvertToCSVDataLine();
|
||
|
}
|