15 lines
404 B
C#
15 lines
404 B
C#
namespace Adaptation.FileHandlers.csv;
|
|
|
|
public class MetaData
|
|
{
|
|
|
|
public int DeviceId { get; set; }
|
|
public string DeviceType { get; set; }
|
|
public int DeviceNumber { get; set; }
|
|
public string DescriptionName { get; set; }
|
|
public string DescriptionTest { get; set; }
|
|
public string Frequency { get; set; }
|
|
public string Date { get; set; }
|
|
public string System { get; set; }
|
|
|
|
} |