Skip to content

Commit

Permalink
Changing StatusEmojiDisplayInfo to a list and adding Unicode property…
Browse files Browse the repository at this point in the history
… to EmojiDisplayInfo
  • Loading branch information
soxtoby committed Apr 28, 2024
1 parent 4b3e9b9 commit 4f01491
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions SlackNet/Objects/EmojiDisplayInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ public class EmojiDisplayInfo
{
public string EmojiName { get; set; }
public string DisplayUrl { get; set; }
public string Unicode { get; set; }
}
2 changes: 1 addition & 1 deletion SlackNet/Objects/UserProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class UserProfile
public string Title { get; set; }
public string AvatarHash { get; set; }
public string StatusEmoji { get; set; }
public EmojiDisplayInfo StatusEmojiDisplayInfo { get; set; }
public IList<EmojiDisplayInfo> StatusEmojiDisplayInfo { get; set; } = [];
public string StatusText { get; set; }
public string StatusTextCanonical { get; set; }
public long StatusExpiration { get; set; }
Expand Down

0 comments on commit 4f01491

Please sign in to comment.