mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-20 07:56:50 +00:00
style: run code cleanup & apply VS suggestions
This commit is contained in:
parent
4d98191fa7
commit
789111cb9a
64 changed files with 329 additions and 390 deletions
|
|
@ -1,11 +1,6 @@
|
|||
using Newtonsoft.Json.Linq;
|
||||
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
|
||||
using PepperDash.Essentials.Core.Web.RequestHandlers;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PepperDash.Essentials
|
||||
{
|
||||
|
|
@ -13,9 +8,10 @@ namespace PepperDash.Essentials
|
|||
{
|
||||
public IMobileControlMessenger Messenger { get; private set; }
|
||||
|
||||
public Action<string, string, JToken> Action {get; private set; }
|
||||
public Action<string, string, JToken> Action { get; private set; }
|
||||
|
||||
public MobileControlAction(IMobileControlMessenger messenger, Action<string,string, JToken> handler) {
|
||||
public MobileControlAction(IMobileControlMessenger messenger, Action<string, string, JToken> handler)
|
||||
{
|
||||
Messenger = messenger;
|
||||
Action = handler;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue