18 lines
401 B
C#
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();
|
|
}
|
|
}
|
|
} |