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.
22 lines
618 B
22 lines
618 B
/*
|
|
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
|
|
* See LICENSE in the source repository root for complete license information.
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace WebApp.Outlook.Models
|
|
{
|
|
// View model to display a collection of one or more entities returned from the Microsoft Graph.
|
|
public class ResultsViewModel
|
|
{
|
|
// The list of entities to display.
|
|
public IEnumerable<ResultsItem> Items { get; set; }
|
|
|
|
public ResultsViewModel()
|
|
{
|
|
Items = Enumerable.Empty<ResultsItem>();
|
|
}
|
|
}
|
|
}
|