using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Knot.RCPatcher.Editor { public interface IKnotRcPatcher { Task Patch(IEnumerable filePaths, IEnumerable> properties, CancellationToken cancellationToken = default); IEnumerable GetTargetFileExtensions(); } }