1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-05-05 21:46:28 +03:00

style: Option -> GuildOption

This commit is contained in:
Octol1ttle 2024-05-16 18:18:25 +05:00
parent 3e6240f4b8
commit a1816a9ac1
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
8 changed files with 14 additions and 14 deletions

View file

@ -4,7 +4,7 @@ using TeamOctolings.Octobot.Parsers;
namespace TeamOctolings.Octobot.Data.Options;
public sealed class TimeSpanOption : Option<TimeSpan>
public sealed class TimeSpanOption : GuildOption<TimeSpan>
{
public TimeSpanOption(string name, TimeSpan defaultValue) : base(name, defaultValue) { }