MeiRiYiCheng_1_old/YBDevice.Application/ViewInfo/IViewEngineService.cs

18 lines
383 B
C#
Raw Permalink Normal View History

2025-07-16 17:14:38 +08:00
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();
}
}