コード例 #1
0
ファイル: UserController.cs プロジェクト: hibroseph/SpotSync
 public async Task <IActionResult> UsersPlaylists(int limit = 10, int offset = 0)
 {
     return(new JsonResult(await _partyGoerService.GetUsersPlaylistsAsync(await _partyGoerService.GetCurrentPartyGoerAsync(), limit, offset)));
 }