mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
44 lines
891 B
C#
44 lines
891 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Flow.Launcher.Plugin.Sys
|
|
{
|
|
public class Command : BaseModel
|
|
{
|
|
public string Key { get; set; }
|
|
|
|
private string name;
|
|
[JsonIgnore]
|
|
public string Name
|
|
{
|
|
get => name;
|
|
set
|
|
{
|
|
name = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
private string description;
|
|
[JsonIgnore]
|
|
public string Description
|
|
{
|
|
get => description;
|
|
set
|
|
{
|
|
description = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
private string keyword;
|
|
public string Keyword
|
|
{
|
|
get => keyword;
|
|
set
|
|
{
|
|
keyword = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
}
|