private static Dictionary <int, PostModel> GetPostModelsById(
            ChattyThread thread, ChattyLolCounts lolCounts)
        {
            var threadLolCounts = lolCounts.GetThreadLolCounts(thread.ThreadId);

            return(PostModel.CreateList(thread, threadLolCounts).ToDictionary(x => x.Id));
        }