Files
ersatztv/ErsatzTV.Core/Trakt/TraktListItemWithGuids.cs
T
Jason DoveandGitHub c02b83d0d6 code cleanup (#743)
* update tools

* run code cleanup

* update dependencies
2022-04-19 17:47:18 -05:00

15 lines
277 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Trakt;
public record TraktListItemWithGuids(
int TraktId,
int Rank,
string DisplayTitle,
string Title,
int? Year,
int Season,
int Episode,
TraktListItemKind Kind,
List<string> Guids);