Flow.Launcher/Plugins/Flow.Launcher.Plugin.Sys/Command.cs
2025-03-13 22:34:50 +08:00

17 lines
348 B
C#

using System.Text.Json.Serialization;
namespace Flow.Launcher.Plugin.Sys
{
public class Command : BaseModel
{
public string Key { get; set; }
[JsonIgnore]
public string Name { get; set; }
[JsonIgnore]
public string Description { get; set; }
public string Keyword { get; set; }
}
}