13 lines
314 B
C#
13 lines
314 B
C#
namespace NapCatRobotClient.Service.Group.Service
|
|
{
|
|
public interface IGroupService
|
|
{
|
|
/// <summary>
|
|
/// 处理群消息
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <returns></returns>
|
|
public Task<bool>ProcessGroupRequest(string message);
|
|
}
|
|
}
|