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

19 lines
437 B
C#
Raw Normal View History

2013-08-28 03:51:54 +03:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
2013-07-23 08:50:32 +03:00
namespace NzbDrone.Core.Providers
{
public class UpdateXemMappingsCommand : ICommand
{
2013-08-28 03:51:54 +03:00
public String CommandId { get; set; }
2013-07-23 08:50:32 +03:00
public int? SeriesId { get; private set; }
public UpdateXemMappingsCommand(int? seriesId)
{
2013-08-28 03:51:54 +03:00
CommandId = HashUtil.GenerateCommandId();
2013-07-23 08:50:32 +03:00
SeriesId = seriesId;
}
}
}