13 lines
217 B
C#
13 lines
217 B
C#
namespace AxCopilot.ViewModels;
|
|
|
|
public class CommandStatItem
|
|
{
|
|
public int Rank { get; init; }
|
|
|
|
public string Command { get; init; } = "";
|
|
|
|
public int Count { get; init; }
|
|
|
|
public double BarWidth { get; init; }
|
|
}
|