• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

rwjdk / TrelloDotNet / 9868844734

10 Jul 2024 05:44AM UTC coverage: 61.279% (-0.2%) from 61.432%
9868844734

push

github

web-flow
System.text.json update (#39)

* Update Changelog.md

* Update TrelloDotNet.csproj

894 of 1817 branches covered (49.2%)

Branch coverage included in aggregate %.

2325 of 3436 relevant lines covered (67.67%)

52.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

29.41
/TrelloDotNet/TrelloDotNet/Model/Actions/TrelloActionDataOld.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Text.Json.Serialization;
4

5
namespace TrelloDotNet.Model.Actions
6
{
7
    /// <summary>
8
    /// Collection of Old values of the Action Data
9
    /// </summary>
10
    public class TrelloActionDataOld
11
    {
12
        /// <summary>
13
        /// due
14
        /// </summary>
15
        [JsonPropertyName("due")]
16
        [JsonInclude]
17
        public DateTimeOffset? Due { get; private set; }
×
18

19
        /// <summary>
20
        /// dueComplete
21
        /// </summary>
22
        [JsonPropertyName("dueComplete")]
23
        [JsonInclude]
24
        public bool? DueComplete { get; private set; }
×
25

26
        /// <summary>
27
        /// start
28
        /// </summary>
29
        [JsonPropertyName("start")]
30
        [JsonInclude]
31
        public DateTimeOffset? Start { get; private set; }
×
32

33
        /// <summary>
34
        /// idLabels
35
        /// </summary>
36
        [JsonPropertyName("idLabels")]
37
        [JsonInclude]
38
        public List<string> Labels { get; private set; }
39✔
39

40
        /// <summary>
41
        /// locationName
42
        /// </summary>
43
        [JsonPropertyName("locationName")]
44
        [JsonInclude]
45
        public string LocationName { get; private set; }
×
46

47
        /// <summary>
48
        /// address
49
        /// </summary>
50
        [JsonPropertyName("address")]
51
        [JsonInclude]
52
        public string Address { get; private set; }
×
53

54
        /// <summary>
55
        /// name
56
        /// </summary>
57
        [JsonPropertyName("name")]
58
        [JsonInclude]
59
        public string Name { get; private set; }
18✔
60

61
        /// <summary>
62
        /// desc
63
        /// </summary>
64
        [JsonPropertyName("desc")]
65
        [JsonInclude]
66
        public string Description { get; private set; }
×
67

68
        /// <summary>
69
        /// idList
70
        /// </summary>
71
        [JsonPropertyName("idList")]
72
        [JsonInclude]
73
        public string ListId { get; private set; }
×
74

75
        /// <summary>
76
        /// pos
77
        /// </summary>
78
        [JsonPropertyName("pos")]
79
        [JsonInclude]
80
        public decimal? Position { get; private set; }
×
81

82
        /// <summary>
83
        /// dueReminder
84
        /// </summary>
85
        [JsonPropertyName("dueReminder")]
86
        [JsonInclude]
87
        public int? DueReminder { get; private set; }
×
88

89
        /// <summary>
90
        /// coordinates
91
        /// </summary>
92
        [JsonPropertyName("coordinates")]
93
        [JsonInclude]
94
        public Coordinates Coordinates { get; private set; }
×
95

96
        /// <summary>
97
        /// cover
98
        /// </summary>
99
        [JsonPropertyName("cover")]
100
        [JsonInclude]
101
        public CardCover Cover { get; private set; }
1✔
102

103
        /// <summary>
104
        /// Id of the image attachment of this card to use as its cover
105
        /// </summary>
106
        [JsonPropertyName("idAttachmentCover")]
107
        [JsonInclude]
108
        public string AttachmentCover { get; private set; }
3✔
109

110
        /// <summary>
111
        /// Display Name of the Organization
112
        /// </summary>
113
        [JsonPropertyName("displayName")]
114
        [JsonInclude]
115
        public string DisplayName { get; private set; }
2✔
116

117
        /// <summary>
118
        /// Website of the Organization
119
        /// </summary>
120
        [JsonPropertyName("website")]
121
        [JsonInclude]
122
        public string Website { get; private set; }
×
123
        
124
        /// <summary>
125
        /// Text of Comment
126
        /// </summary>
127
        [JsonPropertyName("text")]
128
        [JsonInclude]
129
        public string Text { get; private set; }
×
130
    }
131
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc