INIT vol 1.

This commit is contained in:
2024-12-17 19:23:15 +01:00
parent e201f8e89c
commit 8bbcbfab09
11 changed files with 206 additions and 23 deletions
@@ -0,0 +1,17 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WorkFlowCheck.BL.DTO;
namespace WorkFlowCheck.API.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class UserController : ControllerBase
{
[HttpGet]
public ActionResult<ResponseDTO> Get()
{
return new ResponseDTO { Message = "Success" };
}
}
}