mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
13 lines
359 B
C#
13 lines
359 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Config
|
|
{
|
|
public class NamingConfigResource : RestResource
|
|
{
|
|
public Boolean RenameEpisodes { get; set; }
|
|
public Int32 MultiEpisodeStyle { get; set; }
|
|
public string StandardEpisodeFormat { get; set; }
|
|
public string DailyEpisodeFormat { get; set; }
|
|
}
|
|
} |