Delete salimax device not needed

This commit is contained in:
atef 2025-11-12 16:00:26 +01:00
parent c94d9ecf31
commit f40f0be056
1 changed files with 0 additions and 13 deletions

View File

@ -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);
}