jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/People/PersonImages.cs

11 lines
251 B
C#
Raw Normal View History

using System.Collections.Generic;
2020-05-30 23:23:09 -07:00
using MediaBrowser.Providers.Plugins.Tmdb.Models.General;
2020-05-30 23:23:09 -07:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.People
{
public class PersonImages
{
2019-08-18 05:44:13 -07:00
public List<Profile> Profiles { get; set; }
}
}