20 lines
507 B
C#
20 lines
507 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SanShared
|
|
{
|
|
public class UVcsvStrukture
|
|
{
|
|
DateTime zeitstempel;
|
|
double temperatur;
|
|
double druck;
|
|
|
|
public DateTime Zeitstempel { get => zeitstempel; set => zeitstempel = value; }
|
|
public double Temperatur { get => temperatur; set => temperatur = value; }
|
|
public double Druck { get => druck; set => druck = value; }
|
|
}
|
|
}
|