mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-07-02 10:38:16 +00:00
fix: format constructor for IDeviceInfoProviderMessenger for improved readability
This commit is contained in:
parent
846fd711c5
commit
be545bbfa4
1 changed files with 2 additions and 1 deletions
|
|
@ -30,7 +30,8 @@ namespace PepperDash.Essentials.AppServer.Messengers
|
||||||
/// <param name="key">A unique identifier for the messenger instance.</param>
|
/// <param name="key">A unique identifier for the messenger instance.</param>
|
||||||
/// <param name="messagePath">The path used for sending and receiving messages.</param>
|
/// <param name="messagePath">The path used for sending and receiving messages.</param>
|
||||||
/// <param name="device">An implementation of <see cref="IDeviceInfoProvider"/> that provides device-specific information.</param>
|
/// <param name="device">An implementation of <see cref="IDeviceInfoProvider"/> that provides device-specific information.</param>
|
||||||
public IDeviceInfoProviderMessenger(string key, string messagePath, IDeviceInfoProvider device) : base(key, messagePath, device as Device)
|
public IDeviceInfoProviderMessenger(string key, string messagePath, IDeviceInfoProvider device)
|
||||||
|
: base(key, messagePath, device as Device)
|
||||||
{
|
{
|
||||||
_deviceInfoProvider = device;
|
_deviceInfoProvider = device;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue