// // ConnectionInjector.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 NosSmooth.Comms.Data; namespace NosSmooth.Comms.Core; /// /// Injects connection and connection handler into dependency injection. /// public class ConnectionInjector { /// /// Gets or sets the connection. /// public IConnection? Connection { get; set; } /// /// Gets or sets the connection handler. /// public ConnectionHandler? ConnectionHandler { get; set; } }