// // Copyright (c) 2009 Microsoft Corporation. All rights reserved. // using System; using System.Collections.ObjectModel; namespace System.Runtime.Caching { public abstract class FileChangeMonitor : ChangeMonitor { public abstract ReadOnlyCollection FilePaths { get; } public abstract DateTimeOffset LastModified { get; } } }