1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Core/Model/EpisodeSortingType.cs
2011-04-09 19:44:01 -07:00

9 lines
205 B
C#

namespace NzbDrone.Core.Model
{
public class EpisodeSortingType
{
public int Id { get; set; }
public string Name { get; set; }
public string Pattern { get; set; }
}
}