mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
b600bce23f
1. use custom patched pinyin library Pinyin4Net 2. fix memory leak on startup: 360mb -> 160mb when using vs15 debugger
19 lines
561 B
C#
19 lines
561 B
C#
using System;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading;
|
|
using Wox.Infrastructure;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
[Serializable]
|
|
public class Program
|
|
{
|
|
private static readonly Regex AbbrRegexp = new Regex("[^A-Z0-9]", RegexOptions.Compiled);
|
|
public string Title { get; set; }
|
|
public string IcoPath { get; set; }
|
|
public string ExecutePath { get; set; }
|
|
public string ExecuteName { get; set; }
|
|
public int Score { get; set; }
|
|
public IProgramSource Source { get; set; }
|
|
}
|
|
} |