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(); } } }