PatchOption.cs 189 B

123456
  1. namespace Masuit.Tools.TextDiff;
  2. public readonly record struct PatchOption(float PatchDeleteThreshold, short PatchMargin)
  3. {
  4. public static PatchOption Default { get; } = new(0.5f, 4);
  5. }