1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/IndexerSearch/SeriesSearchCommand.cs

17 lines
383 B
C#
Raw Normal View History

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