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

rwjdk / TrelloDotNet / 12973172764

26 Jan 2025 09:02AM UTC coverage: 56.133% (-0.8%) from 56.91%
12973172764

push

github

rwjdk
Version .1.11.9 (Last planned 1.x release)

933 of 1996 branches covered (46.74%)

Branch coverage included in aggregate %.

137 of 384 new or added lines in 21 files covered. (35.68%)

20 existing lines in 4 files now uncovered.

2449 of 4029 relevant lines covered (60.78%)

49.17 hits per line

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

0.0
/src/TrelloDotNet/Model/Options/AddCardToInboxOptions/AddCardToInboxOptions.cs
1
using System;
2
using System.Collections.Generic;
3

4
namespace TrelloDotNet.Model.Options.AddCardToInboxOptions
5
{
6
    /// <summary>
7
    /// Options for adding a card to the inbox of the token Member
8
    /// </summary>
9
    public class AddCardToInboxOptions
10
    {
11
        /// <summary>
12
        /// Name of Card
13
        /// </summary>
NEW
14
        public string Name { get; set; }
×
15

16
        /// <summary>
17
        /// Description of Card
18
        /// </summary>
NEW
19
        public string Description { get; set; }
×
20

21
        /// <summary>
22
        /// Start Date of Card
23
        /// </summary>
NEW
24
        public DateTimeOffset? Start { get; set; }
×
25

26
        /// <summary>
27
        /// Due Date and Time of the Card
28
        /// </summary>
NEW
29
        public DateTimeOffset? Due { get; set; }
×
30

31
        /// <summary>
32
        /// Checklists to add to the Card
33
        /// </summary>
NEW
34
        public List<Checklist> Checklists { get; set; }
×
35

36
        /// <summary>
37
        /// Cover to add to the Card
38
        /// </summary>
NEW
39
        public CardCover Cover { get; set; }
×
40

41
        /// <summary>
42
        /// File Attachments to add to the Card
43
        /// </summary>
NEW
44
        public List<AttachmentFileUpload> AttachmentFileUploads { get; set; }
×
45

46
        /// <summary>
47
        /// URL Link Attachments to add to the Card
48
        /// </summary>
NEW
49
        public List<AttachmentUrlLink> AttachmentUrlLinks { get; set; }
×
50

51
        /// <summary>
52
        /// Position 
53
        /// </summary>
NEW
54
        public decimal? Position { get; set; }
×
55

56
        /// <summary>
57
        /// Named Position
58
        /// </summary>
NEW
59
        public NamedPosition? NamedPosition { get; set; }
×
60

61
        /// <summary>
62
        /// If Due is Complete
63
        /// </summary>
NEW
64
        public bool DueComplete { get; set; }
×
65

66
        /// <summary>
67
        /// Constructor
68
        /// </summary>
69
        /// <param name="name">Name of the Card</param>
NEW
70
        public AddCardToInboxOptions(string name) : this()
×
71
        {
NEW
72
            Name = name;
×
NEW
73
        }
×
74

75
        /// <summary>
76
        /// Constructor
77
        /// </summary>
NEW
78
        public AddCardToInboxOptions()
×
79
        {
NEW
80
            Checklists = new List<Checklist>();
×
NEW
81
            AttachmentUrlLinks = new List<AttachmentUrlLink>();
×
NEW
82
            AttachmentFileUploads = new List<AttachmentFileUpload>();
×
NEW
83
            NamedPosition = Model.NamedPosition.Bottom;
×
NEW
84
        }
×
85
    }
86
}
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