2013-04-25 04:27:49 +00:00
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Organizer
|
|
|
|
{
|
|
|
|
public class NamingConfig : ModelBase
|
|
|
|
{
|
|
|
|
public static NamingConfig Default
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return new NamingConfig
|
|
|
|
{
|
2013-11-10 04:20:45 +00:00
|
|
|
RenameEpisodes = false,
|
2013-04-25 04:27:49 +00:00
|
|
|
MultiEpisodeStyle = 0,
|
2013-11-10 04:20:45 +00:00
|
|
|
StandardEpisodeFormat = "",
|
|
|
|
DailyEpisodeFormat = ""
|
2013-04-25 04:27:49 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-05 03:26:07 +00:00
|
|
|
public bool RenameEpisodes { get; set; }
|
2013-04-25 04:27:49 +00:00
|
|
|
public int MultiEpisodeStyle { get; set; }
|
2013-11-07 01:48:51 +00:00
|
|
|
public string StandardEpisodeFormat { get; set; }
|
|
|
|
public string DailyEpisodeFormat { get; set; }
|
2013-04-25 04:27:49 +00:00
|
|
|
}
|
|
|
|
}
|