mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-15 15:32:33 +01:00
16 lines
326 B
C#
16 lines
326 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class RssSyncCommand : ICommand
|
|
{
|
|
public String CommandId { get; private set; }
|
|
|
|
public RssSyncCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
} |