mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-13 04:23:01 +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; }
|
|
}
|
|
}
|