18 lines
269 B
C#
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;
|
|
}
|
|
}
|
|
}
|