mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-20 07:56:50 +00:00
docs: add missing XML comments for Mobile Control Project
This commit is contained in:
parent
c557c6cdd6
commit
98d0cc8fdc
28 changed files with 576 additions and 177 deletions
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json.Linq;
|
||||
using System;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
|
||||
using System;
|
||||
|
||||
namespace PepperDash.Essentials
|
||||
{
|
||||
|
|
@ -10,12 +10,20 @@ namespace PepperDash.Essentials
|
|||
public class MobileControlAction : IMobileControlAction
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the Messenger
|
||||
/// Gets the Messenger
|
||||
/// </summary>
|
||||
public IMobileControlMessenger Messenger { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Action to execute when this path is matched
|
||||
/// </summary>
|
||||
public Action<string, string, JToken> Action { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initialize an instance of the <see cref="MobileControlAction"/> class
|
||||
/// </summary>
|
||||
/// <param name="messenger">Messenger associated with this action</param>
|
||||
/// <param name="handler">Action to take when this path is matched</param>
|
||||
public MobileControlAction(IMobileControlMessenger messenger, Action<string, string, JToken> handler)
|
||||
{
|
||||
Messenger = messenger;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue