diff options
author | crupest <crupest@outlook.com> | 2022-04-10 21:51:48 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-04-10 21:51:48 +0800 |
commit | 9c874edbb35c87448ce91c142b127b450879e6b4 (patch) | |
tree | d712704a72fa2647b86e96321c890037603d645b /BackEnd/Timeline/Controllers | |
parent | 9d2056786a38558c2ecba4406e2ba172eb0c5597 (diff) | |
download | timeline-9c874edbb35c87448ce91c142b127b450879e6b4.tar.gz timeline-9c874edbb35c87448ce91c142b127b450879e6b4.tar.bz2 timeline-9c874edbb35c87448ce91c142b127b450879e6b4.zip |
...
Diffstat (limited to 'BackEnd/Timeline/Controllers')
-rw-r--r-- | BackEnd/Timeline/Controllers/TimelineBookmark1Controller.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Controllers/TimelineBookmark1Controller.cs b/BackEnd/Timeline/Controllers/TimelineBookmark1Controller.cs new file mode 100644 index 00000000..1dfc1715 --- /dev/null +++ b/BackEnd/Timeline/Controllers/TimelineBookmark1Controller.cs @@ -0,0 +1,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(); + } + } +} |