1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Tv/Commands/RefreshSeriesCommand.cs

24 lines
544 B
C#
Raw Normal View History

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