From b8d0e8cfd881051791930c73ab37fdacacc9d24a Mon Sep 17 00:00:00 2001 From: Tom Date: Thu, 16 Jan 2025 17:06:24 +0000 Subject: [PATCH] Removed 3 unused classes. --- Hermes/Account.cs | 6 ------ Hermes/TwitchBotToken.cs | 7 ------- Hermes/TwitchConnection.cs | 7 ------- 3 files changed, 20 deletions(-) delete mode 100644 Hermes/Account.cs delete mode 100644 Hermes/TwitchBotToken.cs delete mode 100644 Hermes/TwitchConnection.cs diff --git a/Hermes/Account.cs b/Hermes/Account.cs deleted file mode 100644 index 067201f..0000000 --- a/Hermes/Account.cs +++ /dev/null @@ -1,6 +0,0 @@ -public class Account { - public string Id { get; set; } - public string Username { get; set; } - public string Role { get; set; } - public string BroadcasterId { get; set; } -} \ No newline at end of file diff --git a/Hermes/TwitchBotToken.cs b/Hermes/TwitchBotToken.cs deleted file mode 100644 index acda7c5..0000000 --- a/Hermes/TwitchBotToken.cs +++ /dev/null @@ -1,7 +0,0 @@ -public class TwitchBotToken { - public string? ClientId { get; set; } - public string? ClientSecret { get; set; } - public string? AccessToken { get; set; } - public string? RefreshToken { get; set; } - public string? BroadcasterId { get; set; } -} \ No newline at end of file diff --git a/Hermes/TwitchConnection.cs b/Hermes/TwitchConnection.cs deleted file mode 100644 index 3a02b83..0000000 --- a/Hermes/TwitchConnection.cs +++ /dev/null @@ -1,7 +0,0 @@ -public class TwitchConnection { - public string? Id { get; set; } - public string? Secret { get; set; } - public string? BroadcasterId { get; set; } - public string? Username { get; set; } - public string? UserId { get; set; } -} \ No newline at end of file