• 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/AddCustomFieldOptions.cs
1
using System.Collections.Generic;
2

3
namespace TrelloDotNet.Model.Options.AddCustomFieldOptions
4
{
5
    /// <summary>
6
    /// Represent a new custom field
7
    /// </summary>
8
    public class AddCustomFieldOptions
9
    {
10
        /// <summary>
11
        /// Name of the Custom field
12
        /// </summary>
NEW
13
        public string Name { get; set; }
×
14

15
        /// <summary>
16
        /// Type of the Custom Field
17
        /// </summary>
NEW
18
        public CustomFieldType Type { get; set; } = CustomFieldType.Unknown;
×
19

20
        /// <summary>
21
        /// Show the Custom Field on front of Card (Default: true)
22
        /// </summary>
NEW
23
        public bool ShowFieldOnFrontOfCard { get; set; } = true;
×
24

25
        /// <summary>
26
        /// Options of DropDown List (only used if Type = List)
27
        /// </summary>
NEW
28
        public List<AddCustomFieldOption> Options { get; set; }
×
29
    }
30
}
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