mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
22 lines
609 B
C#
22 lines
609 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
using Flow.Launcher.Plugin;
|
|
|
|
namespace Flow.Launcher.Storage;
|
|
public class HistoryItem
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string SubTitle { get; set; } = string.Empty;
|
|
public string PluginID { get; set; } = string.Empty;
|
|
public string RawQuery { get; set; }
|
|
|
|
public DateTime ExecutedDateTime { get; set; }
|
|
[JsonIgnore]
|
|
public Func<ActionContext, bool> ExecuteAction { get; set; }
|
|
[JsonIgnore]
|
|
public Func<ActionContext, bool> QueryAction { get; set; }
|
|
|
|
|
|
|
|
}
|