//
// ClientState.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Remora.Results;
namespace NosSmooth.Comms.Inject;
///
/// A state of the client.
///
public class ClientState
{
///
/// Gets or sets whether the client is running.
///
public bool IsRunning { get; internal set; }
///
/// Gets or sets the result that was obtained upon initialization of the client.
///
public Result? InitResult { get; internal set; }
}