aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Tmdb/Models/Search/ExternalIdLookupResult.cs
blob: d19f4e8cbd4da997a1661634fee87ad45d0b071d (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace MediaBrowser.Providers.Tmdb.Models.Search
{
    public class ExternalIdLookupResult
    {
        public List<TvResult> Tv_Results { get; set; }
    }
}