mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
10 lines
202 B
C#
10 lines
202 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Remotely.Desktop.Core.Interfaces
|
|
{
|
|
public interface IChatClientService
|
|
{
|
|
Task StartChat(string requesterID, string organizationName);
|
|
}
|
|
}
|