blob: 1dfc1715f4392f48835f05c8993ede370f65c770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Timeline.Models;
namespace Timeline.Controllers
{
[ApiController]
[Route("users/{username}/bookmarks")]
public class TimelineBookmark1Controller : MyControllerBase
{
public TimelineBookmark1Controller()
{
}
[ProducesResponseType(200)]
[ProducesResponseType(403)]
public async Task<ActionResult<TimelineBookmark>> ListAsync([FromRoute] string username)
{
throw new NotImplementedException();
}
}
}
|