FF-1981: TV Show Lookup using cache

This commit is contained in:
John Andrews
2025-01-31 08:51:21 +13:00
parent 0d4be92d97
commit 060dc2bd55

View File

@@ -166,11 +166,11 @@ public class TVShow
[JsonPropertyName("seasons")]
public List<Season> Seasons { get; set; }
/// <summary>
/// Gets or sets the list of keywords associated with the TV show.
/// </summary>
[DataMember(Name = "keywords")]
public IReadOnlyCollection<Keyword> Keywords { get; set; }
// /// <summary>
// /// Gets or sets the list of keywords associated with the TV show.
// /// </summary>
// [DataMember(Name = "keywords")]
// public IReadOnlyCollection<Keyword> Keywords { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="TVShow"/> class.
@@ -185,7 +185,7 @@ public class TVShow
OriginCountry = [];
ProductionCompanies = [];
Seasons = [];
Keywords = [];
//Keywords = [];
}
/// <summary>