-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RaSTA identifiers are unsigned integers
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
22 changes: 11 additions & 11 deletions
22
src/FieldElementSubsystems/Configuration/PointConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
); |