添加获取启动器最新版本接口

This commit is contained in:
曾艳 2024-06-17 08:52:42 +08:00
parent a23762cccb
commit 721bae4a9f
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace CompetitionAPI.Controllers.version
{
[Route("api/[controller]")]
[ApiController]
public class GetLastVersionController : Controller
{
}
}

View File

@ -0,0 +1,6 @@
namespace CompetitionAPI.api.version
{
public class GetLastVersionResponse
{
}
}