Files
rudder-csharp-sdk/Abstractions/IPlanStateStore.cs
T
2026-08-12 14:04:55 +03:00

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; }
}