// 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; using System.Collections.Generic; using Microsoft.VisualStudio.Editor.Razor.Documents; namespace Microsoft.VisualStudio.Editor.Razor { internal class ImportChangedEventArgs : EventArgs { public ImportChangedEventArgs(string filePath, FileChangeKind kind, IEnumerable associatedDocuments) { FilePath = filePath; Kind = kind; AssociatedDocuments = associatedDocuments; } public string FilePath { get; } public FileChangeKind Kind { get; } public IEnumerable AssociatedDocuments { get; } } }