export interface MatchPropertyFailedResult<T, TValue = unknown> {
    fieldPaths: string[];
    newEntity: T;
    newValue: TValue;
    oldEntity: T;
    oldValue: TValue;
}
