public async Task ShowItemMarketAsync([Remainder] string filterString = null)
        {
            var pager = CsgoInventoryHandler.GetCsgoMarketInventory(Context, filterString);

            //Send paginated message
            await PagedReplyAsync(pager, new ReactionList
            {
                Jump     = true,
                Forward  = true,
                Backward = true
            });
        }