19 lines
365 B
C#
19 lines
365 B
C#
using System.Windows.Media;
|
|
|
|
namespace AxCopilot.ViewModels;
|
|
|
|
public class TabRatioItem
|
|
{
|
|
public string TabName { get; init; } = "";
|
|
|
|
public int Count { get; init; }
|
|
|
|
public double Percentage { get; init; }
|
|
|
|
public double BarWidth { get; init; }
|
|
|
|
public string PercentLabel { get; init; } = "";
|
|
|
|
public Brush Color { get; init; } = Brushes.MediumSlateBlue;
|
|
}
|