mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
292 B
C#
12 lines
292 B
C#
using Remotely.Shared.Models;
|
|
|
|
namespace Immense.RemoteControl.Desktop.Shared.Abstractions;
|
|
|
|
public interface IChatUiService
|
|
{
|
|
event EventHandler ChatWindowClosed;
|
|
|
|
void ShowChatWindow(string organizationName, StreamWriter writer);
|
|
Task ReceiveChat(ChatMessage chatMessage);
|
|
}
|