8 lines
178 B
C#
8 lines
178 B
C#
|
|
||
|
namespace InnovEnergy.App.Middleware;
|
||
|
|
||
|
public class StatusMessage
|
||
|
{
|
||
|
public required int InstallationId { get; init; }
|
||
|
public required int Status { get; init; }
|
||
|
}
|