18 lines
467 B
C#
18 lines
467 B
C#
namespace RudderSdk.Core;
|
|
|
|
/// <summary>Payload of <see cref="EffectsService.OnScenarioCompleted"/>.</summary>
|
|
public sealed class ScenarioCompletedEffect
|
|
{
|
|
internal ScenarioCompletedEffect(string runId, string scenarioSlug)
|
|
{
|
|
RunId = runId;
|
|
ScenarioSlug = scenarioSlug;
|
|
}
|
|
|
|
/// <summary>Server-issued run id.</summary>
|
|
public string RunId { get; }
|
|
|
|
/// <summary>Scenario id.</summary>
|
|
public string ScenarioSlug { get; }
|
|
}
|