1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00
Sonarr/src/NzbDrone.Api/Config/NamingSampleResource.cs

13 lines
484 B
C#
Raw Normal View History

namespace NzbDrone.Api.Config
2013-08-12 03:42:11 +03:00
{
public class NamingSampleResource
2013-08-12 03:42:11 +03:00
{
public string SingleEpisodeExample { 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; }
2013-08-12 03:42:11 +03:00
}
}