10 lines
248 B
C#
10 lines
248 B
C#
namespace ConsoleApp
|
|
{
|
|
public class VehicleConfiguration
|
|
{
|
|
public int Length { get; set; }
|
|
public int Width { get; set; }
|
|
public int DetectorWidth { get; set; }
|
|
public int DetectorOffset { get; set; }
|
|
}
|
|
} |