mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-22 17:13:07 +08:00
19 lines
477 B
C#
19 lines
477 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Wox.Infrastructure.UserSettings
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class ProgramSource
|
|||
|
{
|
|||
|
public string Location { get; set; }
|
|||
|
public string Assembly { get; set; }
|
|||
|
public string Type { get; set; }
|
|||
|
public int BounsPoints { get; set; }
|
|||
|
public bool Enabled { get; set; }
|
|||
|
public Dictionary<string, string> Meta { get; set; }
|
|||
|
}
|
|||
|
}
|