diff --git a/src/Discord.Net/Models/Server.cs b/src/Discord.Net/Models/Server.cs
index 7f282b45c..e54680d34 100644
--- a/src/Discord.Net/Models/Server.cs
+++ b/src/Discord.Net/Models/Server.cs
@@ -57,6 +57,8 @@ namespace Discord
/// Gets the user that created this server.
public User Owner => GetUser(_ownerId);
+ /// Returns true if the current user owns this server.
+ public bool IsOwner => _ownerId == Client.CurrentUser.Id;
/// Gets the AFK voice channel for this server.
public Channel AFKChannel => _afkChannelId != null ? GetChannel(_afkChannelId.Value) : null;
/// Gets the current user in this server.