| File: IPathMatcher.cs | Web Access |
| Project: Microsoft.TemplateEngine.Core.Contracts.csproj (Microsoft.TemplateEngine.Core.Contracts) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.TemplateEngine.Core.Contracts { public interface IPathMatcher { string Pattern { get; } bool IsMatch(string path); } }