mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-01 04:25:55 +00:00
14 lines
No EOL
294 B
C#
14 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |