Country.cs 264 B

1234567891011
  1. using System;
  2. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
  3. {
  4. public class Country
  5. {
  6. public string Iso_3166_1 { get; set; }
  7. public string Certification { get; set; }
  8. public DateTime Release_Date { get; set; }
  9. }
  10. }