Browse Source

Cleanup 92bf8363ca

pull/1218/head
Still Hsu 6 years ago
parent
commit
7a21b39035
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/Discord.Net.Core/Entities/Emotes/GuildEmote.cs

+ 3
- 2
src/Discord.Net.Core/Entities/Emotes/GuildEmote.cs View File

@@ -31,10 +31,11 @@ namespace Discord
/// </returns>
public IReadOnlyList<ulong> RoleIds { get; }
/// <summary>
/// Gets the user Id that created this emoji.
/// Gets the user ID associated with the creation of this emoji.
/// </summary>
/// <returns>
/// A user Id of the user who created this emoji, which may be null. A null value only indicates that the creator was not supplied as part of the API response.
/// An <see cref="ulong"/> snowflake identifier representing the user who created this emoji;
/// <c>null</c> if unknown.
/// </returns>
public ulong? CreatorId { get; }



Loading…
Cancel
Save