12 lines
311 B
C#
12 lines
311 B
C#
namespace RudderSdk.Core.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Persists serialized scenario-run state between app launches.
|
|
/// Null by default (no persistence).
|
|
/// </summary>
|
|
public interface IPlanStateStore
|
|
{
|
|
/// <summary>Serialized state blob, or null when empty.</summary>
|
|
string? State { get; set; }
|
|
}
|