diff --git a/Lib.Driver/Interfaces/IDriver.cs b/Lib.Driver/Interfaces/IDriver.cs new file mode 100644 index 0000000..7db1be7 --- /dev/null +++ b/Lib.Driver/Interfaces/IDriver.cs @@ -0,0 +1,14 @@ +// Author: Simon Gockner +// Created: 2021-04-10 +// Copyright(c) 2021 SimonG. All Rights Reserved. + +using System.Collections.Generic; +using Lib.Driver.Xml; + +namespace Lib.Driver.Interfaces +{ + public interface IDriver + { + List? Channels { get; } + } +} \ No newline at end of file