Example #1
0
        public IActionResult ChangePhotoDescription(int photoId, int albumId, string description)
        {
            photoService.ChangePhotoDescription(photoId, albumId, description);

            return(Ok());
        }