public async Task <ActionResult <GetHeroDTO> > GetHeroById(Guid id)
        {
            var hero = await _heroAppService.GetHeroById(id);

            if (hero == null)
            {
                return(NotFound());
            }
            return(Ok(hero));
        }