mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
12 lines
227 B
C#
12 lines
227 B
C#
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
|
|
{
|
|
public class CreatedBy
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Profile_Path { get; set; }
|
|
}
|
|
}
|