diff --git a/src/Core/Interactions/ApplicationCommand/OptionChoiceDouble.cs b/src/Core/Interactions/ApplicationCommand/OptionChoiceDouble.cs deleted file mode 100644 index b002f77..0000000 --- a/src/Core/Interactions/ApplicationCommand/OptionChoiceDouble.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Text.Json.Serialization; - -namespace Geekbot.Core.Interactions.ApplicationCommand -{ - /// - public record OptionChoiceDouble : OptionChoice - { - /// - /// value of the choice, up to 100 characters if string - /// - [JsonPropertyName("value")] - public double Value { get; set; } - } -} \ No newline at end of file diff --git a/src/Core/Interactions/ApplicationCommand/OptionChoiceInteger.cs b/src/Core/Interactions/ApplicationCommand/OptionChoiceInteger.cs deleted file mode 100644 index f9e885e..0000000 --- a/src/Core/Interactions/ApplicationCommand/OptionChoiceInteger.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Text.Json.Serialization; - -namespace Geekbot.Core.Interactions.ApplicationCommand -{ - /// - public record OptionChoiceInteger : OptionChoice - { - /// - /// value of the choice, up to 100 characters if string - /// - [JsonPropertyName("value")] - public int Value { get; set; } - } -} \ No newline at end of file diff --git a/src/Core/Interactions/ApplicationCommand/OptionChoiceString.cs b/src/Core/Interactions/ApplicationCommand/OptionChoiceString.cs deleted file mode 100644 index e585c16..0000000 --- a/src/Core/Interactions/ApplicationCommand/OptionChoiceString.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Text.Json.Serialization; - -namespace Geekbot.Core.Interactions.ApplicationCommand -{ - /// - public record OptionChoiceString : OptionChoice - { - /// - /// value of the choice, up to 100 characters if string - /// - [JsonPropertyName("value")] - public string Value { get; set; } - } -} \ No newline at end of file