mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00

Currently uses Hard-Coded Naming Convention, Undecided on SAB or SB configuration style, SAB's is more robust (and flawless? -SP).
19 lines
488 B
C#
19 lines
488 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Model
|
|
{
|
|
public class EpisodeRenameModel
|
|
{
|
|
public string SeriesName { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public int EpisodeNumber { get; set; }
|
|
public string EpisodeName { get; set; }
|
|
public string Folder { get; set; }
|
|
public EpisodeFile EpisodeFile { get; set; }
|
|
}
|
|
}
|