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

rwjdk / TrelloDotNet / 5986049453

26 Aug 2023 05:15PM UTC coverage: 70.85% (-0.2%) from 71.075%
5986049453

push

github

rwjdk
Added GetCommentReactions

825 of 1493 branches covered (0.0%)

Branch coverage included in aggregate %.

14 of 14 new or added lines in 4 files covered. (100.0%)

2077 of 2603 relevant lines covered (79.79%)

63.13 hits per line

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

0.0
/TrelloDotNet/TrelloDotNet/Model/Emoji.cs
1
using System.Text.Json.Serialization;
2

3
namespace TrelloDotNet.Model
4
{
5
    /// <summary>
6
    /// Represent an Emoji
7
    /// </summary>
8
    public class Emoji
9
    {
10
        /// <summary>
11
        /// Unified Id of Emoji
12
        /// </summary>
13
        [JsonPropertyName("unified")]
14
        [JsonInclude]
15
        public string UnifiedId { get; set; }
×
16

17
        /// <summary>
18
        /// The Native value (aka the visual emoji)
19
        /// </summary>
20
        [JsonPropertyName("native")]
21
        [JsonInclude]
22
        public string Native { get; set; }
×
23

24
        /// <summary>
25
        /// Name of the Emoji
26
        /// </summary>
27
        [JsonPropertyName("name")]
28
        [JsonInclude]
29
        public string Name { get; set; }
×
30

31
        /// <summary>
32
        /// The Skin-variation of the Emoji
33
        /// </summary>
34
        [JsonPropertyName("skinVariation")]
35
        [JsonInclude]
36
        public string SkinVariation { get; set; }
×
37

38
        /// <summary>
39
        /// ShortName of the Emoji
40
        /// </summary>
41
        [JsonPropertyName("shortName")]
42
        [JsonInclude]
43
        public string ShortName { get; set; }
×
44
    }
45
}
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