18 lines
383 B
C#
18 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Application.ViewInfo
|
|
{
|
|
public interface IViewEngineService
|
|
{
|
|
/// <summary>
|
|
/// 获取指定页面的按钮列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<ViewS2SDto> GetBtnListAsync();
|
|
}
|
|
}
|