Added detector info

This commit is contained in:
2020-12-10 21:18:15 -07:00
parent 3fee402da1
commit 2c5f0b73b9
12 changed files with 112 additions and 34 deletions

View File

@@ -1,4 +1,9 @@
$HEADER$namespace $NAMESPACE$
namespace ConsoleApp
{
public interface $INTERFACE$ {$END$}
public interface IVehicle
{
int Length { get; }
int Width { get; }
int DetectorWidth { get; }
}
}