init
This commit is contained in:
15
Ubung/Auto.cs
Normal file
15
Ubung/Auto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Ubung;
|
||||
|
||||
internal abstract class Auto
|
||||
{
|
||||
protected Auto(int countDors)
|
||||
{
|
||||
this.CountDors = countDors;
|
||||
}
|
||||
|
||||
public int CountDors { get; protected set; }
|
||||
|
||||
public string Color { get; set; } = "";
|
||||
|
||||
public string Type { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user