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

rwjdk / TrelloDotNet / 23755519059

30 Mar 2026 04:25PM UTC coverage: 78.106% (-1.0%) from 79.144%
23755519059

push

github

rwjdk
2.6.0 (CRUD of Custom Fields)

2632 of 3636 branches covered (72.39%)

Branch coverage included in aggregate %.

0 of 89 new or added lines in 5 files covered. (0.0%)

4 existing lines in 1 file now uncovered.

4667 of 5709 relevant lines covered (81.75%)

145.32 hits per line

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

0.0
/src/TrelloDotNet/Model/Options/AddCustomFieldOptions/AddCustomFieldOption.cs
1
namespace TrelloDotNet.Model.Options.AddCustomFieldOptions
2
{
3
    /// <summary>
4
    /// Option of a Custom Field of type List
5
    /// </summary>
6
    public class AddCustomFieldOption
7
    {
8
        /// <summary>
9
        /// Constructor
10
        /// </summary>
NEW
11
        public AddCustomFieldOption()
×
12
        {
13
            //Empty
NEW
14
        }
×
15

16
        /// <summary>
17
        /// Constructor
18
        /// <param name="text">Text of the option</param>
19
        /// </summary>
NEW
20
        public AddCustomFieldOption(string text)
×
21
        {
NEW
22
            Text = text;
×
NEW
23
        }
×
24

25
        /// <summary>
26
        /// Constructor
27
        /// </summary>
28
        /// <param name="text">Text of the option</param>
29
        /// <param name="color"></param>
NEW
30
        public AddCustomFieldOption(string text, CustomFieldOptionColor color)
×
31
        {
NEW
32
            Text = text;
×
NEW
33
            Color = color;
×
NEW
34
        }
×
35

36
        /// <summary>
37
        /// Text of the Option
38
        /// </summary>
NEW
39
        public string Text { get; set; }
×
40

41
        /// <summary>
42
        /// Color of the Option
43
        /// </summary>
NEW
44
        public CustomFieldOptionColor Color { get; set; } = CustomFieldOptionColor.None;
×
45
    }
46
}
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

© 2026 Coveralls, Inc