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