mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-01 04:25:55 +00:00
a950a13c30
Timer to cleanup/scan for EpisodeFiles (Midnight) Fixed Relationship for EpisodeFile to Series
18 lines
No EOL
474 B
C#
18 lines
No EOL
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class EpisodeModel
|
|
{
|
|
public string Title { get; set; }
|
|
public int EpisodeId { get; set; }
|
|
public int EpisodeNumber { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public string Overview { get; set; }
|
|
public string Path { get; set; }
|
|
public DateTime AirDate { get; set; }
|
|
}
|
|
} |