You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
namespace NapCatRobotClient.Service.Group.Service
|
|
{
|
|
public interface IGroupService
|
|
{
|
|
/// <summary>
|
|
/// 处理群消息
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <returns></returns>
|
|
public Task<bool> ProcessGroupRequest(string message);
|
|
}
|
|
}
|