Files
2022-04-20 15:15:09 +02:00

23 lines
520 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public sealed class VorOrtImprägnier : AbstractImprägnier
{
public double WalzenAbstandSoll
{
get
{
return 2*Wanddicke + 1.0;
}
}
public double WalzenAbstandIst { get; set; }
public bool VakuumKorrekt { get; set; }
public bool EinbautempKorrekt { get; set; }
}
}