11 lines
336 B
C#
11 lines
336 B
C#
|
|
||
|
|
||
|
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; }
|
||
|
}
|