Skip to content

Commit

Permalink
fix: Add None MatchingAlgorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
VMelnalksnis committed Dec 5, 2024
1 parent d12a573 commit 393efcf
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ namespace VMelnalksnis.PaperlessDotNet.Correspondents;
[UsedImplicitly(ImplicitUseKindFlags.Access, ImplicitUseTargetFlags.Members)]
public sealed class MatchingAlgorithm : SmartEnum<MatchingAlgorithm>
{
/// <summary>No matching will be performed.</summary>
public static readonly MatchingAlgorithm None = new("None", 0);

/// <summary>Document contains any of these words (space separated).</summary>
public static readonly MatchingAlgorithm AnyWord = new("Any word", 1);

Expand Down

0 comments on commit 393efcf

Please sign in to comment.