Files
ThingsGateway/framework/ThingsGateway.Admin.Application/System/Services/Notice/INoticeService.cs

32 lines
1.2 KiB
C#
Raw Normal View History

2023-06-09 15:04:54 +08:00
#region copyright
2023-05-23 23:54:28 +08:00
//------------------------------------------------------------------------------
2023-06-09 15:04:54 +08:00
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
// 此代码版权除特别声明外的代码归作者本人Diego所有
// 源代码使用协议遵循本仓库的开源协议及附加协议
2023-07-16 17:48:22 +08:00
// Gitee源代码仓库https://gitee.com/diego2098/ThingsGateway
2023-06-09 15:04:54 +08:00
// Github源代码仓库https://github.com/kimdiego2098/ThingsGateway
2023-07-16 17:48:22 +08:00
// 使用文档https://diego2098.gitee.io/thingsgateway-docs/
2023-06-09 15:04:54 +08:00
// QQ群605534569
2023-05-23 23:54:28 +08:00
//------------------------------------------------------------------------------
#endregion
2023-08-07 15:09:53 +08:00
using Furion.DependencyInjection;
2023-03-04 18:41:11 +08:00
2023-08-07 15:09:53 +08:00
using ThingsGateway.Admin.Core;
namespace ThingsGateway.Admin.Application;
2023-06-06 19:37:04 +08:00
/// <summary>
2023-08-07 15:09:53 +08:00
/// 通知服务
2023-06-06 19:37:04 +08:00
/// </summary>
2023-08-07 15:09:53 +08:00
public interface INoticeService : ITransient
2023-03-04 18:41:11 +08:00
{
/// <summary>
2023-08-07 15:09:53 +08:00
/// 通知用户下线
2023-03-04 18:41:11 +08:00
/// </summary>
2023-08-07 15:09:53 +08:00
/// <param name="userId">用户ID</param>
/// <param name="verificatInfos">验证列表</param>
/// <param name="message">消息内容</param>
2023-06-06 19:37:04 +08:00
/// <returns></returns>
2023-08-07 15:09:53 +08:00
Task LogoutAsync(long userId, List<VerificatInfo> verificatInfos, string message);
2023-03-04 18:41:11 +08:00
}