mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
13 lines
275 B
C#
13 lines
275 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.TV.Entities
|
|
{
|
|
public class Series : Folder
|
|
{
|
|
public string TVDBSeriesId { get; set; }
|
|
public string Status { get; set; }
|
|
}
|
|
}
|