1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-27 18:28:19 +00:00
Sonarr/NzbDrone.Core/IndexerSearch/SeasonSearchCommand.cs
2013-06-18 19:08:44 -07:00

10 lines
No EOL
226 B
C#

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.IndexerSearch
{
public class SeasonSearchCommand : ICommand
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
}
}