mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-17 12:03:01 -05:00
12 lines
210 B
C#
12 lines
210 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
|
|
{
|
|
public class Genre
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
}
|
|
}
|