mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-16 07:52:36 +01:00
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();
|
|
}
|
|
}
|
|
} |