FlexitimeTracker/FlexitimeUI/FlexitimeAPI/Controllers/TimeController.cs
2023-04-11 20:17:20 +01:00

18 lines
401 B
C#

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