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.

19 lines
491 B

2 years ago
  1. using System.Collections.Generic;
  2. namespace WebApp.Outlook.Models
  3. {
  4. public class ResultsItem
  5. {
  6. // The ID and display name for the entity's radio button.
  7. public string Id { get; set; }
  8. public string Display { get; set; }
  9. // The properties of an entity that display in the UI.
  10. public Dictionary<string, object> Properties;
  11. public ResultsItem()
  12. {
  13. Properties = new Dictionary<string, object>();
  14. }
  15. }
  16. }