mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
3b18c9f621
Fix: while renaming series/seasons a single failure no longer stops the whole process Fix: much better notification during batch rename
19 lines
557 B
C#
19 lines
557 B
C#
using System;
|
|
using NzbDrone.Core.Model;
|
|
|
|
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 String Status { get; set; }
|
|
public string AirDate { get; set; }
|
|
public String Quality { get; set; }
|
|
public bool Ignored { get; set; }
|
|
}
|
|
} |