diff --git a/Nhl.Api.Domain/Models/Game/Broadcast.cs b/Nhl.Api.Domain/Models/Game/Broadcast.cs
deleted file mode 100644
index c2e6b51..0000000
--- a/Nhl.Api.Domain/Models/Game/Broadcast.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-using Newtonsoft.Json;
-
-namespace Nhl.Api.Models.Game;
-///
-/// Provides information about the home and away NHL broadcasts televised
-///
-public class Broadcast
-{
- ///
- /// The identifier for the broadcast channel
- /// Example: 28
- ///
- [JsonProperty("id")]
- public int Id { get; set; }
-
- ///
- /// The name for the broadcast channel
- /// Example: MSG-B
- ///
- [JsonProperty("name")]
- public required string Name { get; set; }
-
- ///
- /// The type for the broadcast channel
- /// Example: home
- ///
- [JsonProperty("type")]
- public required string Type { get; set; }
-
- ///
- /// The website for the broadcast channel
- /// Example: nhl
- ///
- [JsonProperty("site")]
- public required string Site { get; set; }
-
- ///
- /// The language for the broadcast channel
- /// Example: en
- ///
- [JsonProperty("language")]
- public required string Language { get; set; }
-}
diff --git a/Nhl.Api.Domain/Models/Statistics/TeamStatisticsDetails.cs b/Nhl.Api.Domain/Models/Statistics/TeamStatisticsDetails.cs
deleted file mode 100644
index b730f42..0000000
--- a/Nhl.Api.Domain/Models/Statistics/TeamStatisticsDetails.cs
+++ /dev/null
@@ -1,195 +0,0 @@
-using Newtonsoft.Json;
-
-namespace Nhl.Api.Models.Statistics;
-///
-/// The NHL team statistic details
-///
-public class TeamStatisticsDetails
-{
-
- ///
- /// The number of games played in the NHL in the current season
- ///
- [JsonProperty("gamesPlayed")]
- public int GamesPlayed { get; set; }
-
- ///
- /// The number of wins in the NHL in the current season
- ///
- [JsonProperty("wins")]
- public required string Wins { get; set; }
-
- ///
- /// The number of losses in the NHL in the current season by rank in place and by numerical value
- ///
- [JsonProperty("losses")]
- public required string Losses { get; set; }
-
- ///
- /// The number of over time games in the NHL in the current season by rank in place and by numerical value
- ///
- [JsonProperty("ot")]
- public required string Ot { get; set; }
-
- ///
- /// The number of league points in the NHL in the current season by rank in place and by numerical value
- ///
- [JsonProperty("pts")]
- public required string Points { get; set; }
-
- ///
- /// The point percentage in the NHL in the current season by rank in place and by numerical value
- ///
- [JsonProperty("ptPctg")]
- public required string PtPctg { get; set; }
-
- ///
- /// The number of goals per game both by rank in place and by numerical value as an average
- ///
- [JsonProperty("goalsPerGame")]
- public required string GoalsPerGame { get; set; }
-
- ///
- /// The number of goals against per game both by rank in place and by numerical value
- ///
- [JsonProperty("goalsAgainstPerGame")]
- public required string GoalsAgainstPerGame { get; set; }
-
- ///
- /// The number of goals against ratio per game both by rank in place and by numerical value
- ///
- [JsonProperty("evGGARatio")]
- public required string EvGGARatio { get; set; }
-
- ///
- /// The power play percentage by rank in place and by numerical value
- ///
- [JsonProperty("powerPlayPercentage")]
- public required string PowerPlayPercentage { get; set; }
-
- ///
- /// The power play goals by rank in place and by numerical value
- ///
- [JsonProperty("powerPlayGoals")]
- public required string PowerPlayGoals { get; set; }
-
- ///
- /// The power play goals against by rank in place and by numerical value
- ///
- [JsonProperty("powerPlayGoalsAgainst")]
- public required string PowerPlayGoalsAgainst { get; set; }
-
- ///
- /// The power play opportunities by rank in place and by numerical value
- ///
- [JsonProperty("powerPlayOpportunities")]
- public required string PowerPlayOpportunities { get; set; }
-
- ///
- /// The penalty kill percentage by rank in place and by numerical value
- ///
- [JsonProperty("penaltyKillPercentage")]
- public required string PenaltyKillPercentage { get; set; }
-
- ///
- /// The shots per game by rank in place and by numerical value
- ///
- [JsonProperty("shotsPerGame")]
- public required string ShotsPerGame { get; set; }
-
- ///
- /// The shots allowed per game by rank in place and by numerical value
- ///
- [JsonProperty("shotsAllowed")]
- public required string ShotsAllowed { get; set; }
-
- ///
- /// The chance of winning based on who scores first by rank in place and by numerical value
- ///
- [JsonProperty("winScoreFirst")]
- public required string WinScoreFirst { get; set; }
-
- ///
- /// The chance of winning based on who scores first by the opposing team by rank in place and by numerical value
- ///
- [JsonProperty("winOppScoreFirst")]
- public required string WinOppScoreFirst { get; set; }
-
- ///
- /// The chance of winning a lead first by rank in place and by numerical value
- ///
- [JsonProperty("winLeadFirstPer")]
- public required string WinLeadFirstPer { get; set; }
-
- ///
- /// The chance of winning a lead second by rank in place and by numerical value
- ///
- [JsonProperty("winLeadSecondPer")]
- public required string WinLeadSecondPer { get; set; }
-
- ///
- /// The winning of a shootout by the opposing team by rank in place and by numerical value
- ///
- [JsonProperty("winOutshootOpp")]
- public required string WinOutshootOpp { get; set; }
-
- ///
- /// The winning of a shootout by the opposing team by rank in place and by numerical value
- ///
- [JsonProperty("winOutshotByOpp")]
- public required string WinOutshotByOpp { get; set; }
-
- ///
- /// The amount of face-offs taken by rank in place and by numerical value
- ///
- [JsonProperty("faceOffsTaken")]
- public required string FaceOffsTaken { get; set; }
-
- ///
- /// The number of face-offs won by rank in place and by numerical value
- ///
- [JsonProperty("faceOffsWon")]
- public required string FaceOffsWon { get; set; }
-
- ///
- /// The number of face-offs lost by rank in place and by numerical value
- ///
- [JsonProperty("faceOffsLost")]
- public required string FaceOffsLost { get; set; }
-
- ///
- /// The face-off win percentage by rank in place and by numerical value
- ///
- [JsonProperty("faceOffWinPercentage")]
- public required string FaceOffWinPercentage { get; set; }
-
- ///
- /// The shooting percentage by numerical value
- ///
- [JsonProperty("shootingPctg")]
- public decimal ShootingPctg { get; set; }
-
- ///
- /// The save percentage by numerical value
- ///
- [JsonProperty("savePctg")]
- public decimal SavePctg { get; set; }
-
- ///
- /// The number of penalty kill opportunities by rank
- ///
- [JsonProperty("penaltyKillOpportunities")]
- public required string PenaltyKillOpportunities { get; set; }
-
- ///
- /// The save percentage by rank
- ///
- [JsonProperty("savePctRank")]
- public required string SavePctRank { get; set; }
-
- ///
- /// The shooting percentage rank by rank in place
- ///
- [JsonProperty("shootingPctRank")]
- public required string ShootingPctRank { get; set; }
-}