21 lines
398 B
C#
21 lines
398 B
C#
namespace AxCopilot.ViewModels;
|
|
|
|
public class DayBarItem
|
|
{
|
|
public string DateLabel { get; init; } = "";
|
|
|
|
public string DayLabel { get; init; } = "";
|
|
|
|
public int Value { get; init; }
|
|
|
|
public double BarHeight { get; init; }
|
|
|
|
public string ValueLabel { get; init; } = "";
|
|
|
|
public string ToolTipText { get; init; } = "";
|
|
|
|
public bool IsToday { get; init; }
|
|
|
|
public bool HasData => Value > 0;
|
|
}
|