Radarr/NzbDrone.Core/IndexerSearch/SeriesSearchCommand.cs

17 lines
383 B
C#
Raw Normal View History

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