vbytes-lan-registration/src/Registration/Registration.API/Controllers/VolunteerController.cs
2026-01-26 21:38:33 +01:00

16 lines
383 B
C#

using Microsoft.AspNetCore.Mvc;
using Registration.Domain.Models;
namespace Registration.API.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class VolunteerController : ControllerBase
{
[HttpPost("register")]
public IActionResult RegisterVolunteer([FromBody] Volunteer volunteer)
{
return Ok();
}
}
}