summary refs log tree commit diff
path: root/MxApiExtensions/Classes/SyncFilter.cs
blob: a15cbcc71da846e6158096c524c7fe7d455a1c7e (plain) (blame)
1
2
3
4
5
6
7
using LibMatrix.Responses;

namespace MxApiExtensions.Classes;

public interface ISyncFilter {
    public Task<SyncResponse> Apply(SyncResponse syncResponse);
}