12 lines
300 B
C#
12 lines
300 B
C#
namespace VigilCare.Simulation;
|
|
|
|
public enum ReplayTarget { Central, Gateway }
|
|
|
|
public record ReplayOptions(
|
|
double Speed = 60,
|
|
bool Poll = false,
|
|
int PollIntervalSeconds = 5,
|
|
bool DryRun = false,
|
|
ReplayTarget Target = ReplayTarget.Central,
|
|
Guid? ExistingEncounterId = null);
|