mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
9 lines
169 B
C#
9 lines
169 B
C#
|
|
namespace MediaBrowser.Providers.Tmdb.Models.General
|
||
|
|
{
|
||
|
|
public class Genre
|
||
|
|
{
|
||
|
|
public int id { get; set; }
|
||
|
|
public string name { get; set; }
|
||
|
|
}
|
||
|
|
}
|