mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-16 16:04:08 +01:00
16 lines
346 B
C#
16 lines
346 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
{
|
|
public class CleanUpRecycleBinCommand : ICommand
|
|
{
|
|
public String CommandId { get; set; }
|
|
|
|
public CleanUpRecycleBinCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
} |