Textfilewriter erstellt

This commit is contained in:
Husky
2021-02-25 10:52:43 +01:00
parent 709f16ad47
commit f07978ce04
3 changed files with 34 additions and 11 deletions

View File

@@ -1,10 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Models {
public class PressureTest {
List<MeasureData> measuredatas = new List<MeasureData>();
bool bestanden;
public string prüfdatum {get => measuredatas.Last().Datum.ToShortDateString();}
public bool Bestanden {get => bestanden; set => bestanden = value;}
public List<MeasureData> Measuredatas { get => measuredatas; set => measuredatas = value; }
}
}
}