Skip to content

Commit

Permalink
RaSTA identifiers are unsigned integers
Browse files Browse the repository at this point in the history
  • Loading branch information
rs22 committed Dec 13, 2023
1 parent c1d72cc commit a8f72b1
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/FieldElementSubsystems/Configuration/PointConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
namespace EulynxLive.FieldElementSubsystems.Configuration;

public record PointConfiguration(
string LocalId,
int LocalRastaId,
string RemoteId,
string RemoteEndpoint,
bool? AllPointMachinesCrucial = null,
bool? SimulateRandomTimeouts = null,
ConnectionProtocol? ConnectionProtocol = null
);
namespace EulynxLive.FieldElementSubsystems.Configuration;

public record PointConfiguration(
string LocalId,
uint LocalRastaId,
string RemoteId,
string RemoteEndpoint,
bool? AllPointMachinesCrucial = null,
bool? SimulateRandomTimeouts = null,
ConnectionProtocol? ConnectionProtocol = null
);

0 comments on commit a8f72b1

Please sign in to comment.