using System.Collections.Generic; namespace WebApp.Outlook.Models { public class ResultsItem { // The ID and display name for the entity's radio button. public string Id { get; set; } public string Display { get; set; } // The properties of an entity that display in the UI. public Dictionary Properties; public ResultsItem() { Properties = new Dictionary(); } } }