mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 10:51:48 +00:00
16 lines
No EOL
318 B
C#
16 lines
No EOL
318 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class RssSyncCommand : ICommand
|
|
{
|
|
public String CommandId { get; set; }
|
|
|
|
public RssSyncCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
} |