Files
tnb.server/message/Tnb.Message.Interfaces/IMessageService.cs
2024-04-11 17:31:32 +08:00

19 lines
544 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace JNPF.Message.Interfaces.Message;
/// <summary>
/// 系统消息
/// 版 本V3.2
/// 日 期2021-06-01.
/// </summary>
public interface IMessageService
{
/// <summary>
/// 消息发送.
/// </summary>
/// <param name="toUserIds"></param>
/// <param name="title"></param>
/// <param name="bodyText"></param>
/// <returns></returns>
Task SentMessage(List<string> toUserIds, string title, string bodyText = null, Dictionary<string, object> bodyDic = null, int type = 2, string flowType = "1");
}