mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07: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();
|
|
}
|
|
}
|
|
} |