1 2 3 4 5 6 7 8
namespace ReferenceClientProxyImplementation.Patches; public interface IPatch { public int GetOrder(); public string GetName(); public bool Applies(string relativeName, byte[] content); public Task<byte[]> Execute(string relativeName, byte[] content); }