mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-10 00:02:56 +01:00
Initial check-in
This commit is contained in:
13
MediaBrowser.TV/Entities/Episode.cs
Normal file
13
MediaBrowser.TV/Entities/Episode.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using MediaBrowser.Model.Entities;
|
||||
|
||||
namespace MediaBrowser.TV.Entities
|
||||
{
|
||||
public class Episode : Video
|
||||
{
|
||||
public string SeasonNumber { get; set; }
|
||||
public string EpisodeNumber { get; set; }
|
||||
public string FirstAired { get; set; }
|
||||
}
|
||||
}
|
||||
16
MediaBrowser.TV/Entities/Season.cs
Normal file
16
MediaBrowser.TV/Entities/Season.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MediaBrowser.TV.Entities
|
||||
{
|
||||
public class Season : Folder
|
||||
{
|
||||
/// <summary>
|
||||
/// Store these to reduce disk access in Episode Resolver
|
||||
/// </summary>
|
||||
[JsonIgnore]
|
||||
public IEnumerable<string> MetadataFiles { get; set; }
|
||||
}
|
||||
}
|
||||
12
MediaBrowser.TV/Entities/Series.cs
Normal file
12
MediaBrowser.TV/Entities/Series.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user