コード例 #1
0
ファイル: FriendController.cs プロジェクト: liuwx60/Cat-IM
        public ActionResult Black(Guid friendId)
        {
            try
            {
                _friendService.Black(friendId);
            }
            catch (Exception ex)
            {
                return(BadRequest(ex.Message));
            }

            return(Ok());
        }