using System; using Flexitime.Objects; using Microsoft.AspNetCore.Mvc; namespace FlexitimeAPI.Controllers { [Route("[controller]")] [ApiController] public class TimeController : ControllerBase { [HttpPost] [Route("log")] public LoginResponse StoreLog(TimeLog log) { throw new NotImplementedException(); } } }