1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-16 16:04:08 +01:00
Radarr/NzbDrone.Core/IndexerSearch/SeriesSearchCommand.cs

17 lines
375 B
C#
Raw Normal View History

2013-08-28 02:51:54 +02:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
2013-07-22 04:52:53 +02:00
namespace NzbDrone.Core.IndexerSearch
{
public class SeriesSearchCommand : ICommand
{
2013-08-28 02:51:54 +02:00
public String CommandId { get; set; }
2013-07-22 04:52:53 +02:00
public int SeriesId { get; set; }
2013-08-28 02:51:54 +02:00
public SeriesSearchCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
2013-07-22 04:52:53 +02:00
}
}