mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-19 05:10:02 +00:00
16 lines
No EOL
326 B
C#
16 lines
No EOL
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();
|
|
}
|
|
}
|
|
} |