This commit is contained in:
陈向学 2024-06-17 20:43:04 +08:00
commit 2da7dd1ae6
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
{
}
}