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

rwjdk / TrelloDotNet / 7308990850

23 Dec 2023 03:12PM UTC coverage: 63.815% (-2.5%) from 66.31%
7308990850

push

github

rwjdk
v1.9.7

890 of 1733 branches covered (0.0%)

Branch coverage included in aggregate %.

5 of 128 new or added lines in 7 files covered. (3.91%)

2 existing lines in 2 files now uncovered.

2332 of 3316 relevant lines covered (70.33%)

54.13 hits per line

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

0.0
/TrelloDotNet/TrelloDotNet/Model/Options/MoveCardToBoardOptions/MoveCardToBoardOptions.cs
1
namespace TrelloDotNet.Model.Options.MoveCardToBoardOptions
2
{
3
    /// <summary>
4
    /// Options when moving a card to a new board
5
    /// </summary>
6
    public class MoveCardToBoardOptions
7
    {
8
        /// <summary>
9
        /// Id of a List on the new Board (if not specified card will be moved to the first list on the board)
10
        /// </summary>
NEW
11
        public string NewListId { get; set; }
×
12

13
        /// <summary>
14
        /// Position of the card on the new list (Will not be used if NamedPosition is used)
15
        /// </summary>
NEW
16
        public decimal? PositionOnNewList { get; set; }
×
17

18
        /// <summary>
19
        /// Named position of the card on the new list (will ignore position given in these options if any)
20
        /// </summary>
NEW
21
        public NamedPosition? NamedPositionOnNewList { get; set; }
×
22

23
        /// <summary>
24
        /// Define what should happen to Labels on the Card (Default = 'MigrateToLabelsOfSameNameAndColorAndCreateMissing')
25
        /// </summary>
NEW
26
        public MoveCardToBoardOptionsLabelOptions LabelOptions { get; set; } = MoveCardToBoardOptionsLabelOptions.MigrateToLabelsOfSameNameAndColorAndCreateMissing;
×
27

28
        /// <summary>
29
        /// Define what should happen to Members on the Card (Default = 'KeepMembersAlsoOnNewBoardAndRemoveRest')
30
        /// </summary>
NEW
31
        public MoveCardToBoardOptionsMemberOptions MemberOptions { get; set; } = MoveCardToBoardOptionsMemberOptions.KeepMembersAlsoOnNewBoardAndRemoveRest;
×
32

33
        /// <summary>
34
        /// If the Start Date of the Card should be removed (Default = False)
35
        /// </summary>
NEW
36
        public bool RemoveStartDate { get; set; }
×
37

38
        /// <summary>
39
        /// If the Due Date of the Card should be removed (Default = False)
40
        /// </summary>
NEW
41
        public bool RemoveDueDate { get; set; }
×
42
    }
43
}
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