// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Microsoft.Plugin.Program.UnitTests")] namespace Wox.Infrastructure { public class MatchOption { /// /// Gets or sets prefix of match char, use for highlight /// [Obsolete("this is never used")] public string Prefix { get; set; } = string.Empty; /// /// Gets or sets suffix of match char, use for highlight /// [Obsolete("this is never used")] public string Suffix { get; set; } = string.Empty; public bool IgnoreCase { get; set; } = true; } }