mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-09-29 15:31:04 -04:00
12 lines
256 B
C#
12 lines
256 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Providers.Tmdb.Models.Movies
|
|
{
|
|
public class Country
|
|
{
|
|
public string Iso_3166_1 { get; set; }
|
|
public string Certification { get; set; }
|
|
public DateTime Release_Date { get; set; }
|
|
}
|
|
}
|