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