Sonarr/src/NzbDrone.Core/Organizer/BasicNamingConfig.cs

13 lines
386 B
C#
Raw Normal View History

2014-12-07 05:55:17 +00:00
namespace NzbDrone.Core.Organizer
{
public class BasicNamingConfig
{
public bool IncludeSeriesTitle { get; set; }
public bool IncludeEpisodeTitle { get; set; }
public bool IncludeQuality { get; set; }
public bool ReplaceSpaces { get; set; }
public string Separator { get; set; }
public string NumberStyle { get; set; }
}
}