Skip to content

Commit

Permalink
Add Runtime info to episode model
Browse files Browse the repository at this point in the history
  • Loading branch information
PCJones committed Nov 11, 2024
1 parent 5aa6cd2 commit d30817a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MediathekArr/Models/TvdbInfoResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public List<TvdbEpisode> FindEpisodesBySeason(string? seasonNumber)
}
}

public record TvdbEpisode(string Name, DateTime? Aired, int SeasonNumber, int EpisodeNumber);
public record TvdbEpisode(string Name, DateTime? Aired, int Runtime, int SeasonNumber, int EpisodeNumber);

public record TvdbAlias(string Language, string Name);
}

0 comments on commit d30817a

Please sign in to comment.