Lidarr/NzbDrone.Core/IndexerSearch/SeasonSearchCommand.cs

10 lines
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; }
}
}