Skip to content

Commit

Permalink
Remove unnecessary inheritdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
zobweyt committed Jun 11, 2024
1 parent ec8309c commit 77a6011
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
5 changes: 0 additions & 5 deletions src/Giveaways/Common/EmbedStyles/SuccessfulEmbedStyle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ namespace Giveaways;
/// </summary>
public class SuccessfulEmbedStyle : EmbedStyle
{
/// <inheritdoc/>
public override string Name => "Succeed!";

/// <inheritdoc/>
public override string IconUrl => Icons.Check;

/// <inheritdoc/>
public override Color Color => Colors.Success;
}
5 changes: 0 additions & 5 deletions src/Giveaways/Common/EmbedStyles/UnsuccessfulEmbedStyle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ namespace Giveaways;
/// </summary>
public class UnsuccessfulEmbedStyle : EmbedStyle
{
/// <inheritdoc/>
public override string Name => "Woops!";

/// <inheritdoc/>
public override string IconUrl => Icons.Cross;

/// <inheritdoc/>
public override Color Color => Colors.Danger;
}
5 changes: 0 additions & 5 deletions src/Giveaways/Common/EmbedStyles/WarningEmbedStyle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ namespace Giveaways;
/// </summary>
public class WarningEmbedStyle : EmbedStyle
{
/// <inheritdoc/>
public override string Name => "Caution!";

/// <inheritdoc/>
public override string IconUrl => Icons.Exclamation;

/// <inheritdoc/>
public override Color Color => Colors.Warning;
}

0 comments on commit 77a6011

Please sign in to comment.