36 lines
963 B
C#
36 lines
963 B
C#
namespace Adaptation.FileHandlers.json.WorkItems;
|
|
|
|
public class PollValues
|
|
{
|
|
|
|
#nullable enable
|
|
|
|
public PollValues(float? business,
|
|
int businessCount,
|
|
float? effort,
|
|
int effortCount,
|
|
float? risk,
|
|
int riskCount,
|
|
float? time,
|
|
int timeCount)
|
|
{
|
|
Business = business;
|
|
BusinessCount = businessCount;
|
|
Effort = effort;
|
|
EffortCount = effortCount;
|
|
Risk = risk;
|
|
RiskCount = riskCount;
|
|
Time = time;
|
|
TimeCount = timeCount;
|
|
}
|
|
|
|
public float? Business { get; set; }
|
|
public int? BusinessCount { get; set; }
|
|
public float? Effort { get; set; }
|
|
public int? EffortCount { get; set; }
|
|
public float? Risk { get; set; }
|
|
public int? RiskCount { get; set; }
|
|
public float? Time { get; set; }
|
|
public int? TimeCount { get; set; }
|
|
|
|
} |