Radarr/src/NzbDrone.Core/Organizer/AbsoluteEpisodeFormat.cs

11 lines
291 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
namespace NzbDrone.Core.Organizer
{
public class EpisodeFormat
{
public string Separator { get; set; }
public string EpisodePattern { get; set; }
public string EpisodeSeparator { get; set; }
public string SeasonEpisodePattern { get; set; }
}
}