10 lines
341 B
C#
10 lines
341 B
C#
using System.Net.WebSockets;
|
|
namespace InnovEnergy.App.Backend.Websockets;
|
|
|
|
public class InstallationInfo
|
|
{
|
|
public int Status { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public int Product { get; set; }
|
|
public List<WebSocket> Connections { get; } = new List<WebSocket>();
|
|
} |