using System.Net.WebSockets; namespace InnovEnergy.App.Backend.Websockets; public class InstallationInfo { public int Status { get; set; } public DateTime Timestamp { get; set; } public List Connections { get; } = new List(); }