namespace ReferenceClientProxyImplementation.Patches; public interface IPatch { public int GetOrder(); public string GetName(); public bool Applies(string relativeName, byte[] content); public Task Execute(string relativeName, byte[] content); }