mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03:00
9 lines
166 B
C#
9 lines
166 B
C#
|
|
namespace MediaBrowser.Providers.Tmdb.Models.TV
|
||
|
|
{
|
||
|
|
public class Network
|
||
|
|
{
|
||
|
|
public int id { get; set; }
|
||
|
|
public string name { get; set; }
|
||
|
|
}
|
||
|
|
}
|