1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-15 01:25:05 +02:00
Files
Sonarr/NzbDrone.Core/MediaFiles/Commands/DownloadedEpisodesScanCommand.cs

16 lines
364 B
C#
Raw Normal View History

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