mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 13:34:54 +00:00
16 lines
No EOL
356 B
C#
16 lines
No EOL
356 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
{
|
|
public class DownloadedEpisodesScanCommand : ICommand
|
|
{
|
|
public String CommandId { get; set; }
|
|
|
|
public DownloadedEpisodesScanCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
} |