From 9a989cac24ed7089d80b3b0c988afdef3769e5ed Mon Sep 17 00:00:00 2001 From: Simon G Date: Sat, 10 Apr 2021 12:18:17 +0200 Subject: [PATCH] - add iDriver --- Lib.Driver/Interfaces/IDriver.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Lib.Driver/Interfaces/IDriver.cs 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