mirror of
https://github.com/jellyfin/jellyfin
synced 2024-11-02 18:21:49 +00:00
Added additional properties to ApiBaseItem
This commit is contained in:
parent
7e6e1b42c8
commit
c3d835cfc5
1 changed files with 9 additions and 0 deletions
|
@ -10,6 +10,15 @@ namespace MediaBrowser.Model.Entities
|
|||
/// </summary>
|
||||
public class ApiBaseItem : BaseItem
|
||||
{
|
||||
// TV Series
|
||||
public string TvdbId { get; set; }
|
||||
public string Status { get; set; }
|
||||
public IEnumerable<DayOfWeek> AirDays { get; set; }
|
||||
public string AirTime { get; set; }
|
||||
|
||||
// Movie
|
||||
public string TmdbId { get; set; }
|
||||
public string ImdbId { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue