Files
PowerToys/WinAlfred.Plugin/Result.cs

21 lines
591 B
C#
Raw Normal View History

2013-12-19 23:51:20 +08:00
using System;
2013-12-23 23:53:38 +08:00
using System.Collections;
2013-12-20 19:38:10 +08:00
using System.Collections.Generic;
2013-12-19 23:51:20 +08:00
namespace WinAlfred.Plugin
{
public class Result
{
public string Title { get; set; }
2013-12-20 19:38:10 +08:00
public string SubTitle { get; set; }
public string IcoPath { get; set; }
2013-12-19 23:51:20 +08:00
public Action Action { get; set; }
public int Score { get; set; }
2013-12-20 19:38:10 +08:00
public List<Result> ContextResults { get; set; }
2013-12-22 19:35:21 +08:00
/// <summary>
/// you don't need to set this property if you are developing a plugin
/// </summary>
public string PluginDirectory { get; set; }
2013-12-19 23:51:20 +08:00
}
}