summary refs log tree commit diff
path: root/ReferenceClientProxyImplementation/Patches/IPatch.cs
blob: 92cab93d298b78553bbbcf1e0b38896a1b577f3a (plain) (blame)
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);
}