add Programmyday form github
This commit is contained in:
22
Parkplatz2/Auto.cs
Normal file
22
Parkplatz2/Auto.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Parkplatz2
|
||||
{
|
||||
class Auto
|
||||
{
|
||||
private string kennzeichen;
|
||||
|
||||
public Auto(string kennzeichen)
|
||||
{
|
||||
this.kennzeichen = kennzeichen;
|
||||
}
|
||||
public string GetKennzeichen()
|
||||
{
|
||||
return kennzeichen;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user