jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Countries/Country.cs

13 lines
275 B
C#

using Newtonsoft.Json;
namespace TMDbLib.Objects.Countries
{
public class Country
{
[JsonProperty("iso_3166_1")]
public string Iso_3166_1 { get; set; }
[JsonProperty("english_name")]
public string EnglishName { get; set; }
}
}