9 lines
218 B
C#
9 lines
218 B
C#
namespace TermRemoteCtl.Agent.History;
|
|
|
|
public sealed record SessionJournalPage(
|
|
string SessionId,
|
|
IReadOnlyList<SessionIoEvent> Items,
|
|
bool HasMoreBefore,
|
|
bool HasMoreAfter,
|
|
long CurrentSequence);
|