16 lines
275 B
C#
16 lines
275 B
C#
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; } = "";
|
|
}
|