mahjong_group/server/CoreCms.Net.IServices/WeChat/ICoreCmsUserWeChatMsgTemplateServices.cs
2026-01-01 14:35:52 +08:00

30 lines
1.0 KiB
C#

/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using CoreCms.Net.Model.Entities;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace CoreCms.Net.IServices
{
/// <summary>
/// 微信小程序消息模板 服务工厂接口
/// </summary>
public interface ICoreCmsUserWeChatMsgTemplateServices : IBaseServices<CoreCmsUserWeChatMsgTemplate>
{
/// <summary>
///
/// </summary>
/// <returns></returns>
Task<List<CoreCmsUserWeChatMsgTemplate>> GetListAsync();
}
}