Lidarr/NzbDrone.Core/IndexerSearch/SeasonSearchCommand.cs

10 lines
226 B
C#
Raw Normal View History

2013-06-19 02:08:29 +00:00
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.IndexerSearch
{
public class SeasonSearchCommand : ICommand
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
}
}