mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
17 lines
348 B
C#
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; }
|
|
}
|
|
}
|