mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
23 lines
587 B
C#
23 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
[Serializable]
|
|
public class ProgramSource
|
|
{
|
|
public string Location { get; set; }
|
|
public string Type { get; set; }
|
|
public int BonusPoints { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public string Suffixes { get; set; }
|
|
public int MaxDepth { get; set; }
|
|
public Dictionary<string, string> Meta { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return (Type ?? "") + ":" + Location ?? "";
|
|
}
|
|
}
|
|
}
|