Files
csharp-uebung/Ubung/Van.cs
2025-04-17 17:40:16 +02:00

18 lines
269 B
C#

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