using System; namespace Discord { /// Represents a Discord snowflake entity. public interface ISnowflakeEntity : IEntity { /// /// Gets when the snowflake was created. /// /// /// A representing when the entity was first created. /// DateTimeOffset CreatedAt { get; } } }