-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFields.cs
More file actions
80 lines (62 loc) · 2.73 KB
/
Fields.cs
File metadata and controls
80 lines (62 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using Newtonsoft.Json;
using System;
using System.Text.Json.Serialization;
namespace AzureDevopsTracker.Dtos
{
public record Fields
{
[JsonPropertyName("System.AreaPath")]
[JsonProperty("System.AreaPath")]
public string AreaPath { get; init; }
[JsonPropertyName("System.TeamProject")]
[JsonProperty("System.TeamProject")]
public string TeamProject { get; init; }
[JsonPropertyName("System.IterationPath")]
[JsonProperty("System.IterationPath")]
public string IterationPath { get; init; }
[JsonPropertyName("System.AssignedTo")]
[JsonProperty("System.AssignedTo")]
public string AssignedTo { get; init; }
[JsonPropertyName("System.WorkItemType")]
[JsonProperty("System.WorkItemType")]
public string Type { get; init; }
[JsonPropertyName("System.CreatedDate")]
[JsonProperty("System.CreatedDate")]
public DateTime CreatedDate { get; init; }
[JsonPropertyName("System.CreatedBy")]
[JsonProperty("System.CreatedBy")]
public string CreatedBy { get; init; }
[JsonPropertyName("System.ChangedBy")]
[JsonProperty("System.ChangedBy")]
public string ChangedBy { get; init; }
[JsonPropertyName("System.State")]
[JsonProperty("System.State")]
public string State { get; init; }
[JsonPropertyName("System.Title")]
[JsonProperty("System.Title")]
public string Title { get; init; }
[JsonPropertyName("System.Tags")]
[JsonProperty("System.Tags")]
public string Tags { get; init; }
[JsonPropertyName("System.Parent")]
[JsonProperty("System.Parent")]
public string Parent { get; init; }
[JsonPropertyName("Microsoft.VSTS.Scheduling.StoryPoints")]
[JsonProperty("Microsoft.VSTS.Scheduling.StoryPoints")]
public string StoryPoints { get; init; }
[JsonPropertyName("Microsoft.VSTS.Scheduling.OriginalEstimate")]
[JsonProperty("Microsoft.VSTS.Scheduling.OriginalEstimate")]
public string OriginalEstimate { get; init; }
[JsonPropertyName("Microsoft.VSTS.Scheduling.RemainingWork")]
[JsonProperty("Microsoft.VSTS.Scheduling.RemainingWork")]
public string RemainingWork { get; init; }
[JsonPropertyName("Microsoft.VSTS.Scheduling.Effort")]
[JsonProperty("Microsoft.VSTS.Scheduling.Effort")]
public string Effort { get; init; }
[JsonPropertyName("Microsoft.VSTS.Common.Activity")]
[JsonProperty("Microsoft.VSTS.Common.Activity")]
public string Activity { get; init; }
[JsonProperty("Custom.ChangeLogDescription")]
public string ChangeLogDescription { get; init; }
}
}