mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 02:09:24 +08:00
21 lines
531 B
C#
21 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Wox.Infrastructure.Storage.UserSettings
|
|
{
|
|
[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 Dictionary<string, string> Meta { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return (this.Type ?? "") + ":" + this.Location ?? "";
|
|
}
|
|
}
|
|
}
|