1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/MediaFiles/Commands/RenameSeriesCommand.cs
2013-07-18 23:21:12 -07:00

14 lines
294 B
C#

using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.MediaFiles.Commands
{
public class RenameSeriesCommand : ICommand
{
public int SeriesId { get; private set; }
public RenameSeriesCommand(int seriesId)
{
SeriesId = seriesId;
}
}
}