namespace Ubung; internal class Van : Kombi { private bool ladefläche = false; public bool Ladefläche { get => ladefläche; set { base.CountDors = value ? 2 : 5; ladefläche = value; } } }