Remotely/Desktop.Core/Interfaces/IChatClientService.cs
2021-07-29 07:56:53 -07:00

10 lines
202 B
C#

using System.Threading.Tasks;
namespace Remotely.Desktop.Core.Interfaces
{
public interface IChatClientService
{
Task StartChat(string requesterID, string organizationName);
}
}