KlassenDLL im Main integriert
This commit is contained in:
35
SanSystem/SanShared/UVcsvStrukture.cs
Normal file
35
SanSystem/SanShared/UVcsvStrukture.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SanShared
|
||||
{
|
||||
/// <summary>
|
||||
/// CSV Dateistruktur
|
||||
/// </summary>
|
||||
public class UVcsvStrukture
|
||||
{
|
||||
DateTime zeitstempel;
|
||||
double temperatur;
|
||||
int druck;
|
||||
double geschwindigkeit;
|
||||
/// <summary>
|
||||
/// Zeitstempel vom Eintrag
|
||||
/// </summary>
|
||||
public DateTime Zeitstempel { get => zeitstempel; set => zeitstempel = value; }
|
||||
/// <summary>
|
||||
/// Temperatur anzeige vom Eintrag
|
||||
/// </summary>
|
||||
public double Temperatur { get => temperatur; set => temperatur = value; }
|
||||
/// <summary>
|
||||
/// Druckanzeige vom Eintrag
|
||||
/// </summary>
|
||||
public int Druck { get => druck; set => druck = value; }
|
||||
/// <summary>
|
||||
/// Geschwindigkeit vom Eintrag
|
||||
/// </summary>
|
||||
public double Geschwindigkeit { get => geschwindigkeit; set => geschwindigkeit = value; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user