mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
457 B
C#
20 lines
457 B
C#
using Remotely.Shared.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.IO.Pipes;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remotely.Desktop.Core.Interfaces
|
|
{
|
|
public interface IChatUiService
|
|
{
|
|
event EventHandler ChatWindowClosed;
|
|
|
|
void ShowChatWindow(string organizationName, StreamWriter writer);
|
|
void ReceiveChat(ChatMessage chatMessage);
|
|
}
|
|
}
|