Initial commit to new repository
This commit is contained in:
22
.decompiledproj/AxCopilot/Views/HelpItemModel.cs
Normal file
22
.decompiledproj/AxCopilot/Views/HelpItemModel.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user