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