23 lines
588 B
C#
23 lines
588 B
C#
using System.Threading.Tasks;
|
|
using YBDevice.Application.ViewInfo;
|
|
|
|
namespace YBDevice.NWeb.Pages.RegUser
|
|
{
|
|
/// <summary>
|
|
/// ×¢²áÓû§
|
|
/// </summary>
|
|
public class IndexModel : BaseModel
|
|
{
|
|
private IViewEngineService _viewEngineService;
|
|
public ViewS2SDto viewdata = new ViewS2SDto();
|
|
public IndexModel(IViewEngineService viewEngineService)
|
|
{
|
|
_viewEngineService = viewEngineService;
|
|
}
|
|
public async Task OnGetAsync()
|
|
{
|
|
viewdata = await _viewEngineService.GetBtnListAsync();
|
|
}
|
|
}
|
|
}
|