mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 08:11:25 +00:00
15 lines
388 B
C#
15 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WinAlfred.Plugin
|
|
{
|
|
public class Result
|
|
{
|
|
public string Title { get; set; }
|
|
public string SubTitle { get; set; }
|
|
public string IcoPath { get; set; }
|
|
public Action Action { get; set; }
|
|
public int Score { get; set; }
|
|
public List<Result> ContextResults { get; set; }
|
|
}
|
|
} |