using System.Threading.Tasks; using YBDevice.Application.ViewInfo; namespace YBDevice.NWeb.Pages.RegUser { /// /// ×¢²áÓû§ /// 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(); } } }