Radarr/NzbDrone.Core/MediaFiles/Commands/DownloadedEpisodesScanComma...

16 lines
364 B
C#
Raw Normal View History

2013-08-28 00:51:54 +00:00
using System;
using NzbDrone.Common;
2013-05-15 02:57:57 +00:00
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.MediaFiles.Commands
{
public class DownloadedEpisodesScanCommand : ICommand
{
public String CommandId { get; private set; }
2013-08-28 00:51:54 +00:00
2013-05-15 02:57:57 +00:00
public DownloadedEpisodesScanCommand()
{
2013-08-28 00:51:54 +00:00
CommandId = HashUtil.GenerateCommandId();
2013-05-15 02:57:57 +00:00
}
}
}