mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-22 08:02:24 +08:00
29 lines
860 B
C#
29 lines
860 B
C#
// 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
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets prefix of match char, use for highlight
|
|
/// </summary>
|
|
[Obsolete("this is never used")]
|
|
public string Prefix { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets suffix of match char, use for highlight
|
|
/// </summary>
|
|
[Obsolete("this is never used")]
|
|
public string Suffix { get; set; } = string.Empty;
|
|
|
|
public bool IgnoreCase { get; set; } = true;
|
|
}
|
|
}
|