You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
491 B
20 lines
491 B
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<string, object> Properties;
|
|
|
|
public ResultsItem()
|
|
{
|
|
Properties = new Dictionary<string, object>();
|
|
}
|
|
}
|
|
}
|