FieldWorkClient/Controller/ExtendController.cs

17 lines
350 B
C#

using HeBianGu.Base.WpfBase;
using HeBianGu.Service.Mvc;
using System;
using System.Threading.Tasks;
namespace HeBianGu.App.Disk
{
[Controller("Custom")]
internal class CustomController : Controller<CustomViewModel>
{
public async Task<IActionResult> Custom()
{
return await ViewAsync();
}
}
}