// Copyright Epic Games, Inc. All Rights Reserved. using System; namespace EpicGames.Horde.Agents.Sessions { /// /// Information about a session /// /// Unique id for this session /// Start time for this session /// Finishing time for this session /// Version of the software running during this session public record GetSessionResponse(SessionId Id, DateTime StartTime, DateTime? FinishTime, string? Version); }