コード例 #1
0
ファイル: UserController.cs プロジェクト: dbyndu/MatrimonyAPI
        public async Task <IActionResult> GetMessageRoomDetails(int userId, int interestUserId)
        {
            var response = await _userService.GetMessageRoomDetails(userId, interestUserId);

            return(Ok(APIResponse.CreateResponse(_jwtAuthentication.Value, _httpContextAccessor.HttpContext.Request, response)));
        }