This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
youys
/
Discord.Net
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
34
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Moved IDeletable from InviteMetadata to Invite
pull/97/head
RogueException
9 years ago
parent
fe042e51bc
commit
6615b852c1
2 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Discord.Net/Common/Entities/Invites/IInvite.cs
+1
-1
src/Discord.Net/Common/Entities/Invites/IInviteMetadata.cs
+ 1
- 1
src/Discord.Net/Common/Entities/Invites/IInvite.cs
View File
@@ -2,7 +2,7 @@
namespace Discord
namespace Discord
{
{
public interface IInvite : IEntity<string>
public interface IInvite : IEntity<string>
, IDeletable
{
{
/// <summary> Gets the unique identifier for this invite. </summary>
/// <summary> Gets the unique identifier for this invite. </summary>
string Code { get; }
string Code { get; }
+ 1
- 1
src/Discord.Net/Common/Entities/Invites/IInviteMetadata.cs
View File
@@ -1,6 +1,6 @@
namespace Discord
namespace Discord
{
{
public interface IInviteMetadata : I
Deletable, I
Invite
public interface IInviteMetadata : IInvite
{
{
/// <summary> Returns true if this invite was revoked. </summary>
/// <summary> Returns true if this invite was revoked. </summary>
bool IsRevoked { get; }
bool IsRevoked { get; }
Write
Preview
Loading…
Cancel
Save