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

18 lines
377 B

using System;
namespace Discord
{
public interface IEntity<TId>
where TId : IEquatable<TId>
{
///// <summary> Gets the IDiscordClient that created this object. </summary>
//IDiscordClient Discord { get; }
/// <summary>
/// Gets the unique identifier for this object.
/// </summary>
TId Id { get; }
}
}