Güteschutzprotokolle hinzugefügt

This commit is contained in:
Husky
2020-03-16 19:48:55 +01:00
parent 47beb8b598
commit 009c54cc84
14 changed files with 1230 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.Base.Models
{
public class PHarzSanierung : GueteschutzProtokoll
{
public string HarzmaterialHersteller { get; set; }
public string HarzMaterialArt { get; set; }
public string KompACharge { get; set; }
public string KompBCharge { get; set; }
public string TraegerKurzliner { get; set; }
public string TraegerHersteller { get; set; }
public string TraegerCharge { get; set; }
public int Flaechengewicht { get; set; }
public bool Auffaelligkeit { get; set; }
public bool FixierungAufPacker { get; set; }
public DateTime MischZeit { get; set; }
public DateTime AnpressenPacker { get; set; }
public DateTime EntlueftenPacker { get; set; }
public double PackerDruckAnfang { get; set; }
public double PackerDruckEnde { get; set; }
}
}