Files
mxaccessgw/src/MxGateway.Server/Sessions/SessionCloseResult.cs
T
2026-04-26 17:29:47 -04:00

9 lines
189 B
C#

using MxGateway.Contracts.Proto;
namespace MxGateway.Server.Sessions;
public sealed record SessionCloseResult(
string SessionId,
SessionState FinalState,
bool AlreadyClosed);