mirror of https://github.com/Radarr/Radarr
17 lines
375 B
C#
17 lines
375 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class SeriesSearchCommand : ICommand
|
|
{
|
|
public String CommandId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
|
|
public SeriesSearchCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
} |