21 lines
424 B
C#
21 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.WorkerService.Services
|
|
{
|
|
/// <summary>
|
|
/// 消息处理
|
|
/// </summary>
|
|
public interface IMessageService
|
|
{
|
|
/// <summary>
|
|
/// 获取消息列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Task GetMessageListAsync();
|
|
}
|
|
}
|