12 lines
412 B
C#
12 lines
412 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Hyperbar.Windows.Primary;
|
|
|
|
[JsonDerivedType(typeof(KeyAcceleratorCommandConfiguration), typeDiscriminator: "KeyAcceleratorCommand")]
|
|
[JsonDerivedType(typeof(ProcessCommandConfiguration), typeDiscriminator: "ProcessCommand")]
|
|
public class PrimaryCommandConfiguration
|
|
{
|
|
public required string Id { get; set; }
|
|
|
|
public required string Icon { get; set; }
|
|
} |