Skip to content

Commit

Permalink
chore: Adjust namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Oct 9, 2024
1 parent 2099883 commit bcd95fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Newtonsoft.Json;
using Uno.UI.RemoteControl.Messaging.IdeChannel;

namespace Uno.UI.RemoteControl.Host.IDEChannel;
namespace Uno.UI.RemoteControl.Host.IdeChannel;

internal static class IdeMessageSerializer
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#nullable enable
using System;
using Uno.UI.RemoteControl.Messaging.IdeChannel;

namespace Uno.UI.RemoteControl.Messaging.IDEChannel;
namespace Uno.UI.RemoteControl.Messaging.IdeChannel;

/// <summary>
/// A message sent by the IDE to the dev-server when a command is issued (like a menuitem invoked).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

namespace Uno.UI.RemoteControl.Messaging.IdeChannel;

public record KeepAliveIdeMessage() : IdeMessage(WellKnownScopes.IdeChannel);
public record KeepAliveIdeMessage(string Source) : IdeMessage(WellKnownScopes.IdeChannel);
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#nullable enable
using System;
using System.Linq;
using Uno.UI.RemoteControl.Messaging.IdeChannel;

namespace Uno.UI.RemoteControl.Messaging.IDEChannel;
namespace Uno.UI.RemoteControl.Messaging.IdeChannel;

/// <summary>
/// A message sent by the sev-server to the IDE to notify the user.
Expand Down

0 comments on commit bcd95fb

Please sign in to comment.