From f40f0be0565b00055b9ba0dc611aa427b766b264 Mon Sep 17 00:00:00 2001 From: atef Date: Wed, 12 Nov 2025 16:00:26 +0100 Subject: [PATCH] Delete salimax device not needed --- csharp/App/SinexcelCommunication/SalimaxDevice.cs | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 csharp/App/SinexcelCommunication/SalimaxDevice.cs diff --git a/csharp/App/SinexcelCommunication/SalimaxDevice.cs b/csharp/App/SinexcelCommunication/SalimaxDevice.cs deleted file mode 100644 index f019ab5e6..000000000 --- a/csharp/App/SinexcelCommunication/SalimaxDevice.cs +++ /dev/null @@ -1,13 +0,0 @@ -using InnovEnergy.Lib.Utils.Net; - -namespace InnovEnergy.App.SinexcelCommunication; - -public class SalimaxDevice : Ip4Address -{ - public required DeviceState DeviceState { get; init; } - - public override String ToString() => $"{base.ToString()} ({DeviceState})"; - - public override int GetHashCode() => HashCode.Combine(base.GetHashCode(), DeviceState); - -} \ No newline at end of file