1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Organizer/EpisodeSortingType.cs

10 lines
262 B
C#
Raw Normal View History

2013-03-06 23:20:34 +01:00
namespace NzbDrone.Core.Organizer
{
public class EpisodeSortingType
{
public int Id { get; set; }
public string Name { get; set; }
public string Pattern { get; set; }
public string EpisodeSeparator { get; set; }
}
2011-04-10 04:44:01 +02:00
}