1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-16 07:52:36 +01:00
Radarr/NzbDrone.Core/Tv/Commands/RefreshSeriesCommand.cs

24 lines
544 B
C#
Raw Normal View History

2013-08-28 02:51:54 +02:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
2013-06-03 07:39:42 +02:00
namespace NzbDrone.Core.Tv.Commands
{
public class RefreshSeriesCommand : ICommand
{
2013-08-28 02:51:54 +02:00
public String CommandId { get; set; }
2013-06-03 07:39:42 +02:00
public int? SeriesId { get; private set; }
2013-08-28 02:51:54 +02:00
public RefreshSeriesCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
2013-06-03 07:39:42 +02:00
public RefreshSeriesCommand(int? seriesId)
{
2013-08-28 02:51:54 +02:00
CommandId = HashUtil.GenerateCommandId();
2013-06-03 07:39:42 +02:00
SeriesId = seriesId;
}
}
}