mirror of
https://github.com/Radarr/Radarr
synced 2026-04-26 19:21:40 +02:00
Adds track NamingConfig, Gets naming section in settings working. Adds Release Year token and track number token
16 lines
No EOL
650 B
C#
16 lines
No EOL
650 B
C#
namespace NzbDrone.Api.Config
|
|
{
|
|
public class NamingSampleResource
|
|
{
|
|
public string SingleEpisodeExample { get; set; }
|
|
public string SingleTrackExample { get; set; }
|
|
public string MultiEpisodeExample { get; set; }
|
|
public string DailyEpisodeExample { get; set; }
|
|
public string AnimeEpisodeExample { get; set; }
|
|
public string AnimeMultiEpisodeExample { get; set; }
|
|
public string SeriesFolderExample { get; set; }
|
|
public string SeasonFolderExample { get; set; }
|
|
public string ArtistFolderExample { get; set; }
|
|
public string AlbumFolderExample { get; set; }
|
|
}
|
|
} |