9 lines
205 B
C#
9 lines
205 B
C#
namespace ConsoleApp.Sim
|
|
{
|
|
public class VehicleConfiguration
|
|
{
|
|
public int Length { get; set; }
|
|
public int Width { get; set; }
|
|
public int DetectorRadius { get; set; }
|
|
}
|
|
} |