46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Media;
|
|
using BeWo.Core;
|
|
using BeWo.Validation;
|
|
using BeWo.ViewModel.ListViewModel;
|
|
|
|
using BS.Shared;
|
|
using BS.Shared.Extensions;
|
|
|
|
namespace BeWo.ViewModel
|
|
{
|
|
public class SupportConceptPeriodStatisticsVM
|
|
{
|
|
public String Header { get; set; }
|
|
|
|
public String StatisticInfo1Left { get; set; } //BEProvidedThisWeek , StringFormat=0.00
|
|
|
|
public String StatisticInfo1Right { get; set; } //BEProvidedTotalRounded , StringFormat=0.00
|
|
|
|
public String StatisticInfo1Error { get; set; } //BEOutOfApprovedPeriod , StringFormat=0.00
|
|
|
|
public String StatisticInfo2Left { get; set; } //BEApprovedPerWeek, StringFormat=0.00
|
|
|
|
public String StatisticInfo2Right { get; set; } //BEApprovedTotal, StringFormat=0.00
|
|
|
|
public String StatisticInfo3Left { get; set; } //BEFreePerWeek, StringFormat=0.00
|
|
|
|
public String StatisticInfo3Right { get; set; } //BEFreeTotal, StringFormat=0.00
|
|
|
|
public String StatisticInfo4Left { get; set; } //BEProvidedThisMonth, StringFormat=0.00
|
|
|
|
public String StatisticInfo4Right { get; set; } //BEApprovedPerMonth, StringFormat=0.00
|
|
|
|
public String StatisticInfo5Left { get; set; } //BEFreeTotal, StringFormat=0.00
|
|
|
|
public String StatisticInfo5Right { get; set; }
|
|
|
|
public decimal MinutesProvidedTotalRounded { get; set; }
|
|
|
|
public Brush StatisticInfo3ForegroundColor { get; set; }
|
|
|
|
public String StatisticInfo3Tooltip { get; set; }
|
|
}
|
|
} |