forked from ddrilling/AsbCloudServer
14 lines
310 B
C#
14 lines
310 B
C#
using System;
|
|
|
|
namespace AsbCloudInfrastructure.Services.SAUB;
|
|
|
|
internal record TelemetryWithSoftwareVersionsDto(int Id,
|
|
string RemoteUid,
|
|
DateTimeOffset LastData,
|
|
string Deposit,
|
|
string Cluster,
|
|
string Well,
|
|
string? HmiVersion,
|
|
string? SaubPlcVersion,
|
|
string? SpinPlcVersion);
|