namespace ConsoleApp { public interface IVehicle { int Length { get; } int Width { get; } int DetectorWidth { get; } } }