mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 07:13:17 +01:00
17 lines
No EOL
383 B
C#
17 lines
No EOL
383 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch
|
|
{
|
|
public class SeriesSearchCommand : ICommand
|
|
{
|
|
public String CommandId { get; private set; }
|
|
public int SeriesId { get; set; }
|
|
|
|
public SeriesSearchCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
} |