2020-08-12 04:41:41 +08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Wox.Plugin
|
|
|
|
|
{
|
|
|
|
|
public class ResultUpdatedEventArgs : EventArgs
|
|
|
|
|
{
|
2020-10-27 06:14:33 +08:00
|
|
|
|
public List<Result> Results { get; private set; }
|
|
|
|
|
|
|
|
|
|
public ResultUpdatedEventArgs(List<Result> results = null)
|
|
|
|
|
{
|
|
|
|
|
Results = results;
|
|
|
|
|
}
|
2020-08-12 04:41:41 +08:00
|
|
|
|
|
|
|
|
|
public Query Query { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|