You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISnowflakeEntity.cs 452 B

7 years ago
7 years ago
12345678910111213141516
  1. using System;
  2. namespace Discord
  3. {
  4. /// <summary> Represents a Discord snowflake entity. </summary>
  5. public interface ISnowflakeEntity : IEntity<ulong>
  6. {
  7. /// <summary>
  8. /// Gets when the snowflake was created.
  9. /// </summary>
  10. /// <returns>
  11. /// A <see cref="DateTimeOffset"/> representing when the entity was first created.
  12. /// </returns>
  13. DateTimeOffset CreatedAt { get; }
  14. }
  15. }