// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; namespace Microsoft.AspNet.Diagnostics.Views { /// /// Holds data to be displayed on the compilation error page. /// public class CompilationErrorPageModel { /// /// Options for what output to display. /// public ErrorPageOptions Options { get; set; } /// /// Detailed information about each parse or compilation error. /// public IList ErrorDetails { get; } = new List(); } }