|
|
|
@ -12,14 +12,15 @@ public class Fields
|
|
|
|
|
public Fields(int customRRminusOE,
|
|
|
|
|
CustomRequester? customRequester,
|
|
|
|
|
float customWSJF,
|
|
|
|
|
float? microsoftVSTSSchedulingEffort,
|
|
|
|
|
int microsoftVSTSCommonBusinessValue,
|
|
|
|
|
DateTime microsoftVSTSCommonClosedDate,
|
|
|
|
|
int microsoftVSTSCommonPriority,
|
|
|
|
|
DateTime microsoftVSTSCommonResolvedDate,
|
|
|
|
|
DateTime microsoftVSTSCommonStateChangeDate,
|
|
|
|
|
float microsoftVSTSCommonTimeCriticality,
|
|
|
|
|
float? microsoftVSTSSchedulingEffort,
|
|
|
|
|
DateTime microsoftVSTSSchedulingStartDate,
|
|
|
|
|
DateTime microsoftVSTSSchedulingTargetDate,
|
|
|
|
|
string systemAreaPath,
|
|
|
|
|
SystemAssignedTo systemAssignedTo,
|
|
|
|
|
SystemChangedBy systemChangedBy,
|
|
|
|
@ -30,25 +31,26 @@ public class Fields
|
|
|
|
|
string systemDescription,
|
|
|
|
|
string systemHistory,
|
|
|
|
|
string systemIterationPath,
|
|
|
|
|
int systemParent,
|
|
|
|
|
string systemReason,
|
|
|
|
|
string systemState,
|
|
|
|
|
string systemTags,
|
|
|
|
|
string systemTeamProject,
|
|
|
|
|
string systemTitle,
|
|
|
|
|
string systemWorkItemType,
|
|
|
|
|
DateTime microsoftVSTSSchedulingTargetDate)
|
|
|
|
|
string systemWorkItemType)
|
|
|
|
|
{
|
|
|
|
|
CustomRRminusOE = customRRminusOE;
|
|
|
|
|
CustomRequester = customRequester;
|
|
|
|
|
CustomRRminusOE = customRRminusOE;
|
|
|
|
|
CustomWSJF = customWSJF;
|
|
|
|
|
MicrosoftVSTSSchedulingEffort = microsoftVSTSSchedulingEffort;
|
|
|
|
|
MicrosoftVSTSCommonBusinessValue = microsoftVSTSCommonBusinessValue;
|
|
|
|
|
MicrosoftVSTSCommonClosedDate = microsoftVSTSCommonClosedDate;
|
|
|
|
|
MicrosoftVSTSCommonPriority = microsoftVSTSCommonPriority;
|
|
|
|
|
MicrosoftVSTSCommonResolvedDate = microsoftVSTSCommonResolvedDate;
|
|
|
|
|
MicrosoftVSTSCommonStateChangeDate = microsoftVSTSCommonStateChangeDate;
|
|
|
|
|
MicrosoftVSTSCommonTimeCriticality = microsoftVSTSCommonTimeCriticality;
|
|
|
|
|
MicrosoftVSTSSchedulingEffort = microsoftVSTSSchedulingEffort;
|
|
|
|
|
MicrosoftVSTSSchedulingStartDate = microsoftVSTSSchedulingStartDate;
|
|
|
|
|
MicrosoftVSTSSchedulingTargetDate = microsoftVSTSSchedulingTargetDate;
|
|
|
|
|
SystemAreaPath = systemAreaPath;
|
|
|
|
|
SystemAssignedTo = systemAssignedTo;
|
|
|
|
|
SystemChangedBy = systemChangedBy;
|
|
|
|
@ -59,17 +61,17 @@ public class Fields
|
|
|
|
|
SystemDescription = systemDescription;
|
|
|
|
|
SystemHistory = systemHistory;
|
|
|
|
|
SystemIterationPath = systemIterationPath;
|
|
|
|
|
SystemParent = systemParent;
|
|
|
|
|
SystemReason = systemReason;
|
|
|
|
|
SystemState = systemState;
|
|
|
|
|
SystemTags = systemTags;
|
|
|
|
|
SystemTeamProject = systemTeamProject;
|
|
|
|
|
SystemTitle = systemTitle;
|
|
|
|
|
SystemWorkItemType = systemWorkItemType;
|
|
|
|
|
MicrosoftVSTSSchedulingTargetDate = microsoftVSTSSchedulingTargetDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("Custom.RRminusOE")] public int CustomRRminusOE { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Custom.Requester")] public CustomRequester? CustomRequester { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Custom.RRminusOE")] public int CustomRRminusOE { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Custom.WSJF")] public float CustomWSJF { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Microsoft.VSTS.Common.BusinessValue")] public int MicrosoftVSTSCommonBusinessValue { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Microsoft.VSTS.Common.ClosedDate")] public DateTime MicrosoftVSTSCommonClosedDate { get; } // { init; get; }
|
|
|
|
@ -79,6 +81,7 @@ public class Fields
|
|
|
|
|
[JsonPropertyName("Microsoft.VSTS.Common.TimeCriticality")] public float MicrosoftVSTSCommonTimeCriticality { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Microsoft.VSTS.Scheduling.Effort")] public float? MicrosoftVSTSSchedulingEffort { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Microsoft.VSTS.Scheduling.StartDate")] public DateTime MicrosoftVSTSSchedulingStartDate { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Microsoft.VSTS.Scheduling.TargetDate")] public DateTime MicrosoftVSTSSchedulingTargetDate { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.AreaPath")] public string SystemAreaPath { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.AssignedTo")] public SystemAssignedTo? SystemAssignedTo { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.ChangedBy")] public SystemChangedBy SystemChangedBy { get; } // { init; get; }
|
|
|
|
@ -89,12 +92,12 @@ public class Fields
|
|
|
|
|
[JsonPropertyName("System.Description")] public string SystemDescription { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.History")] public string SystemHistory { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.IterationPath")] public string SystemIterationPath { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.Parent")] public int SystemParent { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.Reason")] public string SystemReason { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.State")] public string SystemState { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.Tags")] public string SystemTags { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.TeamProject")] public string SystemTeamProject { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.Title")] public string SystemTitle { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("System.WorkItemType")] public string SystemWorkItemType { get; } // { init; get; }
|
|
|
|
|
[JsonPropertyName("Microsoft.VSTS.Scheduling.TargetDate")] public DateTime MicrosoftVSTSSchedulingTargetDate { get; } // { init; get; }
|
|
|
|
|
|
|
|
|
|
}
|