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; }