Moved IDeletable from InviteMetadata to Invite

This commit is contained in:
RogueException
2016-05-14 23:03:45 -03:00
parent fe042e51bc
commit 6615b852c1
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
namespace Discord
{
public interface IInvite : IEntity<string>
public interface IInvite : IEntity<string>, IDeletable
{
/// <summary> Gets the unique identifier for this invite. </summary>
string Code { get; }

View File

@@ -1,6 +1,6 @@
namespace Discord
{
public interface IInviteMetadata : IDeletable, IInvite
public interface IInviteMetadata : IInvite
{
/// <summary> Returns true if this invite was revoked. </summary>
bool IsRevoked { get; }