Files
Kansan/KanSan.Base/Models/PHarzSanierung.cs
2020-03-16 19:48:55 +01:00

27 lines
950 B
C#

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; }
}
}