jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Movies/Releases.cs

14 lines
290 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.Movies
{
public class Releases
{
[JsonProperty("countries")]
public List<Country> Countries { get; set; }
[JsonProperty("id")]
public int Id { get; set; }
}
}