mirror of https://github.com/lidarr/Lidarr
26 lines
649 B
C#
26 lines
649 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Commands
|
|
{
|
|
public class RenameSeasonCommand : ICommand
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
|
|
public String CommandId { get; private set; }
|
|
|
|
public RenameSeasonCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
|
|
public RenameSeasonCommand(int seriesId, int seasonNumber)
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
SeriesId = seriesId;
|
|
SeasonNumber = seasonNumber;
|
|
}
|
|
}
|
|
} |