23 lines
506 B
C#
23 lines
506 B
C#
using System.Windows.Media;
|
|
|
|
namespace AxCopilot.Views;
|
|
|
|
public class HelpItemModel
|
|
{
|
|
public string Category { get; init; } = "";
|
|
|
|
public string Command { get; init; } = "";
|
|
|
|
public string Title { get; init; } = "";
|
|
|
|
public string Description { get; init; } = "";
|
|
|
|
public string Example { get; init; } = "";
|
|
|
|
public string Symbol { get; init; } = "";
|
|
|
|
public SolidColorBrush ColorBrush { get; init; } = new SolidColorBrush(Colors.Gray);
|
|
|
|
public bool HasExample => !string.IsNullOrEmpty(Example);
|
|
}
|