PowerToys/WinAlfred.Plugin/Result.cs

15 lines
388 B
C#
Raw Normal View History

2013-12-19 15:51:20 +00:00
using System;
2013-12-20 11:38:10 +00:00
using System.Collections.Generic;
2013-12-19 15:51:20 +00:00
namespace WinAlfred.Plugin
{
public class Result
{
public string Title { get; set; }
2013-12-20 11:38:10 +00:00
public string SubTitle { get; set; }
public string IcoPath { get; set; }
2013-12-19 15:51:20 +00:00
public Action Action { get; set; }
public int Score { get; set; }
2013-12-20 11:38:10 +00:00
public List<Result> ContextResults { get; set; }
2013-12-19 15:51:20 +00:00
}
}