2023-11-22 15:49:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace InnovEnergy.App.Backend.Websockets;
|
|
|
|
|
|
|
|
public class AlarmOrWarning
|
|
|
|
{
|
|
|
|
public required String Date { get; set; }
|
|
|
|
public required String Time { get; set; }
|
|
|
|
public required String Description { get; set; }
|
|
|
|
public required String CreatedBy { get; set; }
|
2024-05-21 09:42:24 +00:00
|
|
|
}
|