Radarr/NzbDrone.Core/Model/EpisodeSortingType.cs

10 lines
258 B
C#
Raw Normal View History

2011-04-10 02:44:01 +00:00
namespace NzbDrone.Core.Model
{
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 02:44:01 +00:00
}