FieldWorkClient/Controller/SendController.cs

27 lines
558 B
C#
Raw Normal View History

2025-03-17 10:58:59 +08:00
using HeBianGu.Base.WpfBase;
using HeBianGu.Service.Mvc;
using System;
using System.Threading.Tasks;
namespace HeBianGu.App.Disk
{
[Controller("Send")]
internal class SendController : Controller<SendViewModel>
{
public async Task<IActionResult> Send()
{
return await ViewAsync();
}
public async Task<IActionResult> Down()
{
return await ViewAsync();
}
2025-03-20 16:08:11 +08:00
public async Task<IActionResult> UpLoad()
{
return await ViewAsync();
}
2025-03-17 10:58:59 +08:00
}
}