9 lines
156 B
C#
9 lines
156 B
C#
namespace ConsoleApp
|
|
{
|
|
public interface IVehicle
|
|
{
|
|
int Length { get; }
|
|
int Width { get; }
|
|
int DetectorWidth { get; }
|
|
}
|
|
} |