9 lines
220 B
C#
9 lines
220 B
C#
namespace CvMatcher.Models.Settings;
|
|
|
|
public sealed class MatcherSettings
|
|
{
|
|
public int TopK { get; set; } = 10;
|
|
public int DeepScoreTopN { get; set; } = 5;
|
|
public int MaxJobTextChars { get; set; } = 60000;
|
|
}
|