Blame view

netcore/src/Modularity/Extend/NCC.Extend.Interfaces/IEmailService.cs 692 Bytes
efde7d04   “wangming”   更新多个文件,删除不再使用的CSS...
1
  using NCC.Extend.Entitys.common_extend;
96009bc9   hexiaodong   hxd
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  using System.Threading.Tasks;
  
  namespace NCC.Extend.Interfaces
  {
      /// <summary>
      /// 邮件收发
      ///  本:V1.20.15
      ///  权:Wesleyhttps://www.NCCsoft.com
      ///  者:NCC开发平台组
      ///  期:2022-03-16 
      /// </summary>
      public interface IEmailService
      {
          /// <summary>
          /// 门户未读邮件
          /// </summary>
          /// <returns></returns>
          Task<dynamic> GetUnreadList();
  
          /// <summary>
          /// 信息(配置)
          /// </summary>
          /// <returns></returns>
          Task<EmailConfigEntity> GetConfigInfo();
      }
  }