16 lines
324 B
C#
16 lines
324 B
C#
|
|
using DouyinApi.IServices.BASE;
|
||
|
|
using DouyinApi.Model;
|
||
|
|
using DouyinApi.Model.Models;
|
||
|
|
using DouyinApi.Model.ViewModels;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace DouyinApi.IServices
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// IWeChatPushLogServices
|
||
|
|
/// </summary>
|
||
|
|
public interface IWeChatPushLogServices : IBaseServices<WeChatPushLog>
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|