14 lines
207 B
C#
14 lines
207 B
C#
|
namespace CarClass;
|
||
|
|
||
|
class Car
|
||
|
{
|
||
|
public string Number { get;}
|
||
|
public int OwnerId { get;}
|
||
|
|
||
|
public Car(string number, int ownerId)
|
||
|
{
|
||
|
Number = number;
|
||
|
OwnerId = ownerId;
|
||
|
}
|
||
|
}
|