示例#1
0
        public ActionResult DeletePlayList([FromRoute] Guid playListId)
        {
            var userId = User.GetUserId();

            _playListService
            .DeletePlayList(userId, playListId);

            return(Ok());
        }