mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-05 04:39:08 +08:00
14 lines
260 B
C#
14 lines
260 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public class PythonResult : Result
|
|
{
|
|
public string ActionName { get; set; }
|
|
public string ActionPara { get; set; }
|
|
}
|
|
}
|