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.

21 lines
618 B

2 years ago
  1. /*
  2. * Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
  3. * See LICENSE in the source repository root for complete license information.
  4. */
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. namespace WebApp.Outlook.Models
  8. {
  9. // View model to display a collection of one or more entities returned from the Microsoft Graph.
  10. public class ResultsViewModel
  11. {
  12. // The list of entities to display.
  13. public IEnumerable<ResultsItem> Items { get; set; }
  14. public ResultsViewModel()
  15. {
  16. Items = Enumerable.Empty<ResultsItem>();
  17. }
  18. }
  19. }