jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/General/ProductionCountry.cs

12 lines
257 B
C#

namespace TMDbLib.Objects.General
{
public class ProductionCountry
{
/// <summary>
/// A country code, e.g. US
/// </summary>
public string Iso_3166_1 { get; set; }
public string Name { get; set; }
}
}