jellyfin-server/MediaBrowser.Providers/Plugins/Tmdb/Models/Movies/ProductionCountry.cs
2020-06-16 16:11:30 +12:00

10 lines
200 B
C#

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
{
public class ProductionCountry
{
public string Iso_3166_1 { get; set; }
public string Name { get; set; }
}
}