Files
rudder-csharp-sdk/Abstractions/IPlanStateStore.cs
T

12 lines
311 B
C#
Raw Normal View History

2026-08-12 14:04:55 +03:00
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; }
}