Added SeasonSearchCommand

This commit is contained in:
Mark McDowall 2013-06-18 19:08:29 -07:00
commit 8ee0789c62
6 changed files with 115 additions and 33 deletions

View file

@ -0,0 +1,10 @@
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.IndexerSearch
{
public class SeasonSearchCommand : ICommand
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
}
}