This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/exam1/exam1/LKW.cs

20 lines
394 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace exam1
{
class LKW : Fahrzeug
{
public int MaxGewicht { get; set; }
public LKW(int _id, int _ps, int _gewicht)
{
this.FahrzeugID = _id;
this.PS = _ps;
this.MaxGewicht = _gewicht;
}
}
}