public async Task <IActionResult> GetMyPostAsync(int userId, [FromQuery] int skip = 0, [FromQuery] int limit = 5)
        {
            var result = await _service.GetMyPostsAsync(userId, skip, limit);

            return(Ok(result));
        }