mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
11 lines
208 B
C#
11 lines
208 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace WinAlfred.Plugin
|
|||
|
|
{
|
|||
|
|
public class Result
|
|||
|
|
{
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
public Action Action { get; set; }
|
|||
|
|
public int Score { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|